interface XShapeCombiner in module com::sun::star::drawing::

(Global Index)

Syntax

interface XShapeCombiner : com::sun::star::uno::XInterface ;

Description

specifies the combine/split functionality.

Method Summary

combine combines Shape s

split splits Shape s.

Known Services Which Export this Interface

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

Method Details



combine

Syntax

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

Syntax

void split (
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