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

interface XShapeCombiner
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XShapeCombiner
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
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 ::com::sun::star::drawing::Shape s  
split splits ::com::sun::star::drawing::Shape s.  
Methods' Details
combine
::com::sun::star::drawing::XShape
combine( [in] ::com::sun::star::drawing::XShapes  xShapes );

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

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