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

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

interface XShapeCombiner

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

Description
specifies the combine/split 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

combine combines Shape s
split splits Shape s.

Methods' Details

combine
 
com::sun::star::drawing::XShape
combine(
[ in ] com::sun::star::drawing::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 ] com::sun::star::drawing::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