interface XShapes in module com::sun::star::drawing::

(Global Index)

Syntax

interface XShapes : com::sun::star::container::XIndexAccess ;

Description

makes it possible to access, add, and remove the Shape s in a collection.

See also

DrawPage

See also

MasterPage

See also

DrawingDocumentDrawView

Method Summary

add inserts a Shape into this collection.

remove removes a Shape from this collection.

Known Services Which Export this Interface

com::sun::star::drawing::GroupShape

com::sun::star::drawing::GenericDrawPage

com::sun::star::drawing::Shapes

Method Details



add

Syntax

void add (
com::sun::star::drawing::XShape xShape );

Description

inserts a Shape into this collection.

Parameter xShape

a Shape that will be inserted.

remove

Syntax

void remove (
com::sun::star::drawing::XShape xShape );

Description

removes a Shape from this collection.

Parameter xShape

the Shape will be removed from the collection and disposed.
Top of Page