Text Documents (Writer)
HTML Documents (Writer Web)
Spreadsheets (Calc)
Presentations (Impress)
Drawings (Draw)
Database Functionality (Base)
Formulae (Math)
Charts and Diagrams
Macros and Scripting
Office Installation
Common Help Topics
OneOffice Logo

CDateToUnoTime Function

Returns the time part of the date as a UNO com.sun.star.util.Time struct.

Syntax:


CDateToUnoTime(aDate)

Return value:

com.sun.star.util.Time

Parameters:

aDate: Date value to convert

Error codes:

5 Invalid procedure call

Example:


Sub ExampleCDateToUnoTime
    aDatabaseRow.updateTime(3, CDateToUnoTime(Now))
    aTimeControl.Time = CDateToUnoTime(Now)
End Sub