Click or drag to resize

Minute Function

X#
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
Request Example View Source

Parameters

tExpression
Type: DateTime
Specifies the DateTime expression from which the minute portion is returned.

Return Value

Type: Long
Numeric
Examples
X#
1CLEAR
2? Minute(DateTime( ))
3? Minute({^1998-02-16 10:42a})  // Displays 42
See Also