Return the variable as a time
Member of Number Intrinsic Functions (PRIM_LIBI.INumberIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Time | Resulting time |
Format | *Input (Optional) | Enumeration | Format of the time |
AsTime will return a time based on the value of the variable and the specified format. If the supplied value does not conform to the required format, the application will end with a run time error. Use the IsTime intrinsic to test the value before attempting to convert to a time.
Enum Value | Description |
---|---|
HHMMSS | e.g. "113045" |
Seconds | Number of seconds since 00:00:00 |
In this example, if the variable contained "113045", the result would be a time of 11:30:45. Eleven hours, 30 minutes and 45 seconds.
If (#Variable.IsTime(hhmmss)) #Time := #Variable.AsTime(hhmmss) Endif
Febuary 18 V14SP2