DateAndTime.Minute(DateTime) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an integer value from 0 through 59 representing the minute of the hour.
public:
static int Minute(DateTime TimeValue);
public static int Minute (DateTime TimeValue);
static member Minute : DateTime -> int
Public Function Minute (TimeValue As DateTime) As Integer
Parameters
- TimeValue
- DateTime
Required. A Date
value from which you want to extract the minute.
Returns
An integer value from 0 through 59 representing the minute of the hour.
Examples
This example uses the Minute
function to obtain the minute of the hour from a specified time. In the development environment, the time literal is displayed in short time format using the locale settings of your code.
Dim thisTime As Date
Dim thisMinute As Integer
thisTime = #4:35:17 PM#
thisMinute = Minute(thisTime)
' thisMinute now contains 35.
Remarks
You can also obtain the minute of the hour by calling DatePart
and specifying DateInterval.Minute
for the Interval
argument.