Second function
Syntax
Second(timevalue)
Description
Use the Second function to extract the seconds component of a Time value.
Parameters
| Parameter | Description |
|---|---|
|
timevalue |
A Time value from which to extract seconds. |
Returns
Returns a Number equal to the seconds part of timevalue.
Example
Assume that &TIMEOUT contains Time value of 16:48:21. The following would set &SECS to 21:
&SECS = Second(&TIMEOUT);
Related Topics