:: com :: sun :: star :: util ::

struct Time
Description
represents a time value.

Elements' Summary
NanoSeconds contains the nanoseconds (0 - 999 999 999).  
Seconds contains the seconds (0-59).  
Minutes contains the minutes (0-59).  
Hours contains the hour (0-23).  
IsUTC true: time zone is UTC false: unknown time zone.  
Elements' Details
NanoSeconds
unsigned long NanoSeconds;
Description
contains the nanoseconds (0 - 999 999 999).
Seconds
unsigned short Seconds;
Description
contains the seconds (0-59).
Minutes
unsigned short Minutes;
Description
contains the minutes (0-59).
Hours
unsigned short Hours;
Description
contains the hour (0-23).
IsUTC
boolean IsUTC;
Description
true: time zone is UTC false: unknown time zone.
Since
LibreOffice 4.1
Top of Page