company logo

DateTime :: minute - Minute property

The minute property provides the number of minutes from the time value (mm of hh:mm:ss,cc).

Return value:  Minute ( int32  )

Minute of the hour. The value should range from 0 to 59.

Implementation overview

Implementation details

  1. Get minutes from time value
    int32 DateTime  :: minute (  )

    The function returns the number of minutes from the time value.

  2. to list
  3. Set minutes
    int32 DateTime  :: minute ( int32 iMinute )

    The number of minutes is set to the value passed in iMinute. When the value is less than 0 or greater than 59, the function throws an exception.

    • iMinute - Minute

      Minute of the hour. The value should range from 0 to 59.

  4. to list