[]
        
(Showing Draft Content)

FarPoint.Web.Spread.IntegerCellType.-ctor

IntegerCellType Constructor

IntegerCellType()

Creates a new integer data type cell.

Declaration
public IntegerCellType()
Public Sub New()

IntegerCellType(string)

Creates a new integer data type cell with the specified message to display.

Declaration
public IntegerCellType(string errorMessage)
Public Sub New(errorMessage As String)
Parameters
Type Name Description
string errorMessage

Message (as string) to display if the input value is not valid

IntegerCellType(int, int)

Creates a new integer data type cell with the specified minimum and maximum values.

Declaration
public IntegerCellType(int min, int max)
Public Sub New(min As Integer, max As Integer)
Parameters
Type Name Description
int min

Minimum allowed integer value

int max

Maximum allowed integer value

IntegerCellType(int, int, string)

Creates a new integer data type cell with the specified minimum and maximum values and specified error message.

Declaration
public IntegerCellType(int min, int max, string errorMessage)
Public Sub New(min As Integer, max As Integer, errorMessage As String)
Parameters
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