company logo

Time :: second - Second property

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

Return value:  Second ( int32  )

Second of the minute. The value should range from 0 to 59.

Implementation overview

Implementation details

  1. Get seconds from time value
    int32 Time  :: second (  )

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

  2. to list
  3. Set seconds
    int32 Time  :: second ( int32 iSecond )

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

    • iSecond - Second

      Second of the minute. The value should range from 0 to 59.

  4. to list