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

(Global Index)

Syntax

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

Description

The type description of an array. The type class of this description is TypeClass_ARRAY.

Method Summary

getType

getNumberOfDimensions

getDimensions

Method Details



getType

Syntax

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

Description

Returns

the typedefed type, if the type is a typedef, or the base type, if the type is a array or sequence.

getNumberOfDimensions

Syntax

long getNumberOfDimensions ();

Description

Returns

the number of dimensions.

getDimensions

Syntax

sequence< long > getDimensions ();

Description

Returns

a sequence with the array dimensions.
Top of Page