[]
        
(Showing Draft Content)

FarPoint.Web.Spread.DoubleCellType.-ctor

DoubleCellType Constructor

DoubleCellType()

Creates a new double-precision, floating-point data type cell.

Declaration
public DoubleCellType()
Public Sub New()

DoubleCellType(string)

Creates a new double-precision, floating-point data type cell with the specified message to display.

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

Message to display when the input value is not valid

DoubleCellType(double, double)

Creates a new double-precision, floating-point data type cell with the minimum value and the maximum value specified.

Declaration
public DoubleCellType(double min, double max)
Public Sub New(min As Double, max As Double)
Parameters
Type Name Description
double min

Minimum value to allow

double max

Maximum value to allow

DoubleCellType(double, double, string)

Creates a new double-precision, floating-point data type cell with the minimum value, the maximum value, and the error message specified.

Declaration
public DoubleCellType(double min, double max, string errorMessage)
Public Sub New(min As Double, max As Double, errorMessage As String)
Parameters
Type Name Description
double min

Minimum value to allow

double max

Maximum value to allow

string errorMessage

Message to display when the input value is not within the allowed limits