WizPageDataGetDateTime Method (String, DateTime) |
Get the DateTime value for the named item in the wizard's page data.
The current instance is assumed.
Note that this is equivalent to calling EAPConvert.ToDateTime(data.GetString(itemName), defaultValue).
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public Nullable<DateTime> GetDateTime(
string itemName,
DateTime defaultValue
)
Public Function GetDateTime (
itemName As String,
defaultValue As DateTime
) As Nullable(Of DateTime)
Parameters
- itemName
- Type: SystemString
The name of the data item to get (for the current instance). - defaultValue
- Type: SystemDateTime
The value to return if the specified item is not found.
Return Value
Type:
NullableDateTimeThe value of the requested item if found, else defaultValue.
See Also