interface XElementAccess in module com::sun::star::container::

(Global Index)

Syntax

interface XElementAccess : com::sun::star::uno::XInterface ;

Description

This is the base interface of all collection interfaces.

Method Summary

getElementType

hasElements

Method Details



getElementType

Syntax

type getElementType ();

Description

Returns

the type of the elements. void means that it is a multi-type container and you cannot determine the exact types with this interface.

hasElements

Syntax

boolean hasElements ();

Description

Returns

true> if the object contain elements, otherwise false .
Top of Page