[]
Creates a new double-precision, floating-point data type cell.
public DoubleCellType()
Public Sub New()
Creates a new double-precision, floating-point data type cell with the specified message to display.
public DoubleCellType(string errorMessage)
Public Sub New(errorMessage As String)
Type | Name | Description |
---|---|---|
string | errorMessage | Message to display when the input value is not valid |
Creates a new double-precision, floating-point data type cell with the minimum value and the maximum value specified.
public DoubleCellType(double min, double max)
Public Sub New(min As Double, max As Double)
Creates a new double-precision, floating-point data type cell with the minimum value, the maximum value, and the error message specified.
public DoubleCellType(double min, double max, string errorMessage)
Public Sub New(min As Double, max As Double, errorMessage As String)