interface XEnumTypeDescription in module com::sun::star::reflection::

(Global Index)

Syntax

interface XEnumTypeDescription : com::sun::star::reflection::XTypeDescription ;

Description

the type description of an enum.

Method Summary

getDefaultEnumValue returns the value of the the first enum.

getEnumNames

getEnumValues

Method Details



getDefaultEnumValue

Syntax

long getDefaultEnumValue ();

Description

returns the value of the the first enum.


getEnumNames

Syntax

sequence< string > getEnumNames ();

Description

Returns

the names of the enum values.

getEnumValues

Syntax

sequence< long > getEnumValues ();

Description

Returns

the values of the enum (corresponding to names in similar order).
Top of Page