[]
Creates a new date-time cell.
public DateTimeCellType()
Public Sub New()
Creates a new date-time cell with the specified error message.
public DateTimeCellType(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 date-time cell with the specified earliest and latest allowable dates and times.
public DateTimeCellType(DateTime min, DateTime max)
Public Sub New(min As Date, max As Date)
Type | Name | Description |
---|---|---|
DateTime | min | Minimum value (earliest date and time) |
DateTime | max | Maximum value (latest date and time) |
Creates a new date-time cell with the specified earliest and latest allowable dates and the specified error message.
public DateTimeCellType(DateTime min, DateTime max, string errorMessage)
Public Sub New(min As Date, max As Date, errorMessage As String)