[]
Creates a new currency cell.
public CurrencyCellType()
Public Sub New()
Creates a new currency cell with the specified message to display.
public CurrencyCellType(string errorMessage)
Public Sub New(errorMessage As String)
Type | Name | Description |
---|---|---|
string | errorMessage | Message (as a string) to display if the input value is not valid |
Creates a new currency cell with the specified minimum and maximum values.
public CurrencyCellType(decimal min, decimal max)
Public Sub New(min As Decimal, max As Decimal)
Type | Name | Description |
---|---|---|
decimal | min | Minimum value of currency (as decimal) |
decimal | max | Maximum value of currency (as decimal) |
Creates a new currency cell with the specified minimum and maximum values and the specified error message.
public CurrencyCellType(decimal min, decimal max, string errorMessage)
Public Sub New(min As Decimal, max As Decimal, errorMessage As String)