[]
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)
Type | Name | Description |
---|---|---|
int | min | Minimum allowed integer value |
int | max | Maximum allowed integer value |
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)
Type | Name | Description |
---|---|---|
int | min | Minimum allowed integer value |
int | max | Maximum allowed integer value |
string | errorMessage | Message (as string) to display if the input value is not valid |