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

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

interface XShapeBinder

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

Description
connects or breaks the lines of Shape s


Known Services which Export this Interface

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

Methods' Summary

bind binds Shape s together.
unbind breaks a Shape into its line segments

Methods' Details

bind
 
com::sun::star::drawing::XShape
bind(
[ in ] com::sun::star::drawing::XShapes xShapes );

Description
binds Shape s together.
Parameter xShapes
a container with Shape s that will be bind toghether. All Shapes will be converted to a PolyPolygonBezierShape and the lines will be connected. The Shape s in xShape will be removed from the GenericDrawPage and disposed.
Returns
a newly created PolyPolygonBezierShape which contains all line segment from the supplied Shape s. It is also added to the GenericDrawPage of the source Shape s.
unbind
 
void
unbind(
[ in ] com::sun::star::drawing::XShape xShape );

Description
breaks a Shape into its line segments
Parameter xShape
the given Shape will be converted to a PolyPolygonBezierShape and the line segments of this Shape will be used to create new PolyPolygonBezierShape shapes. The original Shape will be removed from its GenericDrawPage and disposed.

Top of Page