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

(Global Index)

Syntax

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

Description

the type description of a struct or exception.

Method Summary

getBaseType returns the type of the base type from the compound. If the compound does not have a base type, the method returns a NULL.

getMemberTypes

getMemberNames

Method Details



getBaseType

Syntax

com::sun::star::reflection::XTypeDescription getBaseType ();

Description

returns the type of the base type from the compound. If the compound does not have a base type, the method returns a NULL.


getMemberTypes

Syntax

sequence< com::sun::star::reflection::XTypeDescription > getMemberTypes ();

Description

Returns

the members of the struct or exception.

getMemberNames

Syntax

sequence< string > getMemberNames ();

Description

Returns

the member names of the struct or exception.
Top of Page