CDateFromUnoDateTime Function

Converts a UNO com.sun.star.util.DateTime struct to a Date value.

구문:

CDateFromUnoDateTime(aDateTime)

반환 값:

날짜

매개 변수:

aDateTime: DateTime to convert

Error codes:

5 잘못된 프로시저 호출입니다.

예:

Sub ExampleCDateFromUnoDateTime

    MsgBox(CDateFromUnoDateTime(aDatabaseRow.getTimestamp(3)))

End Sub