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

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

interface XShapeGrouper

Base Interface
com::sun::star::uno::XInterface

Description
specifies the group/ungroup functionality.


Known Services which Export this Interface

com::sun::star::drawing::GenericDrawPage This abstract service is implemented by every page of a DrawingDocument .

Methods' Summary

group groups the Shape s inside a collection.
ungroup ungroups a given GroupShape .

Methods' Details

group
 
com::sun::star::drawing::XShapeGroup
group(
[ in ] com::sun::star::drawing::XShapes xShapes );

Description
groups the Shape s inside a collection.
Parameter xShapes
the Shape s that will be grouped. They must all be inserted into the same GenericDrawPage .
Returns
a newly created GroupShape that contains all Shape s from xShapes and is also added to the GenericDrawPage of the Shape s in xShapes.
ungroup
 
void
ungroup(
[ in ] com::sun::star::drawing::XShapeGroup aGroup );

Description
ungroups a given GroupShape .
Parameter aGroup
moves all Shape s from this GroupShape to the parent XShapes of the GroupShape . The GroupShape is than removed from the GenericDrawPage and disposed.

Top of Page