Minute Function | |
Returns the minute portion from a DateTime expression.
Namespace:
XSharp.VFP
Assembly:
XSharp.VFP (in XSharp.VFP.dll) Version: 2.19
Syntax FUNCTION Minute(
tExpression AS DateTime
) AS LONG
public static int Minute(
DateTime tExpression
)
Request Example
View SourceParameters
- tExpression
- Type: DateTime
Specifies the DateTime expression from which the minute portion is returned.
Return Value
Type:
Long
Numeric
Examples 1CLEAR
2? Minute(DateTime( ))
3? Minute({^1998-02-16 10:42a})
See Also