查看源码 wxGridCellBoolEditor (wx v2.4.3)

用于布尔数据的网格单元格编辑器。

参见

此类派生自以下类,并可以使用其中的函数:

wxWidgets 文档: wxGridCellBoolEditor

概要

函数

销毁对象

如果给定的 value 等于当前使用的真值字符串表示形式(请参见 useStringValues/1),则返回 true。

默认构造函数。

此方法允许您自定义 wxGridCellNumberEditor:getValue/1 为使用此编辑器的单元格返回的值。

类型

链接到此类型

wxGridCellBoolEditor()

查看源码
-type wxGridCellBoolEditor() :: wx:wx_object().

函数

-spec destroy(This :: wxGridCellBoolEditor()) -> ok.

销毁对象

-spec isTrueValue(Value) -> boolean() when Value :: unicode:chardata().

如果给定的 value 等于当前使用的真值字符串表示形式(请参见 useStringValues/1),则返回 true。

-spec new() -> wxGridCellBoolEditor().

默认构造函数。

-spec useStringValues() -> ok.

等效于 useStringValues([])

链接到此函数

useStringValues(Options)

查看源码
-spec useStringValues([Option]) -> ok
                         when
                             Option ::
                                 {valueTrue, unicode:chardata()} | {valueFalse, unicode:chardata()}.

此方法允许您自定义 wxGridCellNumberEditor:getValue/1 为使用此编辑器的单元格返回的值。

默认情况下,使用参数的默认值,即如果选中单元格,则返回 "1",否则返回空字符串。