Minute Procedure
Returns the minute component of a time.
Overload #1: Minute(dateTime)
Declaration
function Minute(dateTime as DateTime) as Number
Parameters
- dateTime as DateTime — The time to extract the minute component from.
Return value
Number — The minute component of the time.
Example
Code
dim x = DateTimeFromParts(2021, 3, 12, 14, 30, 59, 488)
print Minute(x)
Output
Overload #2: Minute(dateTimeOffset)
Declaration
function Minute(dateTimeOffset as DateTimeOffset) as Number
Parameters
- dateTimeOffset as DateTimeOffset — The time to extract the minute component from.
Return value
Number — The minute component of the time.
Example
Code
dim x = DateTimeOffsetFromParts(2021, 3, 12, 4, 30, 59, 488, Hours(-4))
print Minute(x)
Output