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

interface XShapes
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--::com::sun::star::container::XElementAccess
       |  
       +--::com::sun::star::container::XIndexAccess
            |  
            +--XShapes
::com::sun::star::container::XIndexAccess
(referenced interface's summary:)
provides access to the elements of a collection through an index.
Description
makes it possible to access, add, and remove the ::com::sun::star::drawing::Shape s in a collection.
See also
::com::sun::star::drawing::DrawPage
See also
::com::sun::star::drawing::MasterPage
See also
::com::sun::star::drawing::DrawingDocumentDrawView

Methods' Summary
add inserts a ::com::sun::star::drawing::Shape into this collection.  
remove removes a ::com::sun::star::drawing::Shape from this collection.  
Methods' Details
add
void
add( [in] ::com::sun::star::drawing::XShape  xShape );

Description
inserts a ::com::sun::star::drawing::Shape into this collection.
Parameter xShape
a ::com::sun::star::drawing::Shape that will be inserted.
remove
void
remove( [in] ::com::sun::star::drawing::XShape  xShape );

Description
removes a ::com::sun::star::drawing::Shape from this collection.
Parameter xShape
the ::com::sun::star::drawing::Shape will be removed from the collection and disposed.
Top of Page