[]
Creates a new integer data type cell.
public IntegerCellType()
Public Sub New()
Creates a new integer data type cell with the specified message to display.
public IntegerCellType(string errorMessage)
Public Sub New(errorMessage As String)
Type | Name | Description |
---|---|---|
string | errorMessage | Message (as string) to display if the input value is not valid |
Creates a new integer data type cell with the specified minimum and maximum values.
public IntegerCellType(int min, int max)
Public Sub New(min As Integer, max As Integer)
Creates a new integer data type cell with the specified minimum and maximum values and specified error message.
public IntegerCellType(int min, int max, string errorMessage)
Public Sub New(min As Integer, max As Integer, errorMessage As String)