查看源码 wxGridCellNumberEditor (wx v2.4.3)
用于数值型整数数据的网格单元编辑器。
参见
此类继承自以下类,并可以使用以下类中的函数:
wxWidgets 文档: 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()}.
允许您指定可接受数据的范围。
当 min
和 max
的值都等于 -1 时,表示不应进行范围检查。
-spec setParameters(This, Params) -> ok when This :: wxGridCellNumberEditor(), Params :: unicode:chardata().
参数字符串格式为 "min,max"。