wxGridCellNumberEditor (wx v2.5.4)

Copy Markdown View Source

Grid cell editor for numeric integer data.

See:

This class is derived, and can use functions, from:

wxWidgets docs: wxGridCellNumberEditor

Summary

Functions

Destroys the object

Returns the value currently in the editor control.

Allows you to specify the range for acceptable data.

Parameters string format is "min,max".

Types

wxGridCellNumberEditor()

-type wxGridCellNumberEditor() :: wx:wx_object().

Functions

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

Destroys the object

getValue(This :: wxGridCellNumberEditor()) -> unicode:charlist()

Returns the value currently in the editor control.

new() ≡ new([])

new(Options :: [Option]) -> Result

Types

Result = wxGridCellNumberEditor()
Option = {min, integer()} | {max, integer()}

Allows you to specify the range for acceptable data.

Values equal to -1 for both min and max indicate that no range checking should be done.

setParameters(This, Params) -> ok

Types

This = wxGridCellNumberEditor()
Params = unicode:chardata()

Parameters string format is "min,max".