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

interface XShapeCombiner
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XShapeCombiner
Description
specifies the combine/split functionality.
Developers Guide
9.3.2 Drawing Documents and Presentation Documents - Working with Drawing Documents - Shapes - Shape Operations - Grouping, Combining and Binding

Methods' Summary
combine combines Shape s
split splits Shape s.
Methods' Details
combine
XShape
combine(
 
[in] XShapes
 
xShapes );

Description
combines Shape s
Parameter xShapes
the Shape s inside this container are converted to PolyPolygonBezierShape s and are than combined into one PolyPolygonBezierShape . The Shape s in xShape will be removed from the GenericDrawPage and disposed.
Returns
a newly created PolyPolygonBezierShape which contains all converted PolyPolygonBezierShape combined. It is also added to the GenericDrawPage of the source Shape s.
split
void
split(
 
[in] XShape
 
xGroup );

Description
splits Shape s.
Parameter xShapes
the Shape is converted to a PolyPolygonBezierShape s and then splited into several PolyPolygonBezierShape s The Shape s in xShape will be removed from the GenericDrawPage and disposed.
Top of Page