查看源码 wxGridCellNumberEditor (wx v2.4.3)

用于数值型整数数据的网格单元编辑器。

参见

此类继承自以下类,并可以使用以下类中的函数:

wxWidgets 文档: wxGridCellNumberEditor

摘要

函数

销毁对象

返回编辑器控件中当前的值。

等同于 new([])

允许您指定可接受数据的范围。

参数字符串格式为 "min,max"。

类型

链接到此类型

wxGridCellNumberEditor()

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

函数

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

销毁对象

-spec getValue(This) -> unicode:charlist() when This :: wxGridCellNumberEditor().

返回编辑器控件中当前的值。

-spec new() -> wxGridCellNumberEditor().

等同于 new([])

-spec new([Option]) -> wxGridCellNumberEditor() when Option :: {min, integer()} | {max, integer()}.

允许您指定可接受数据的范围。

minmax 的值都等于 -1 时,表示不应进行范围检查。

链接到此函数

setParameters(This, Params)

查看源码
-spec setParameters(This, Params) -> ok
                       when This :: wxGridCellNumberEditor(), Params :: unicode:chardata().

参数字符串格式为 "min,max"。