Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XShapes

Base Interface
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


Known Services which Export this Interface

com::sun::star::drawing::GroupShape This service is for a group of Shape s.
com::sun::star::drawing::GenericDrawPage This abstract service is implemented by every page of a DrawingDocument .
com::sun::star::drawing::Shapes This service is for a generic collection of shapes.

Methods' Summary

add inserts a Shape into this collection.
remove removes a Shape from this collection.

Methods' Details

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

Description
inserts a Shape into this collection.
Parameter xShape
a Shape that will be inserted.
remove
 
void
remove(
[ in ] 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