:: com :: sun :: star :: bridge :: oleautomation ::

struct Date
Usage Restrictions
not published
Description
is the UNO representation of the Automation type DATE .

A DATE could actually be representd as double in UNO and therefore a typedef from double to a date type would do. But a typedef cannot be expressed in all language bindings. In the case where no typedefs are supported the actual type is used. That is, a typedef'd date type would be represented as double in Java. The information that the double is a date type is lost.

When calling Automation objects from UNO the distinction between double and date type is important. Therefore ::com::sun::star::bridge::oleautomation::Date is declared as struct.

Since
OpenOffice 1.1.2

Elements' Summary
Value corresponds to the Automation type DATE .  
Elements' Details
Value
double Value;
Description
corresponds to the Automation type DATE .
Top of Page