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

interface XShapeBinder
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XShapeBinder
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
connects or breaks the lines of ::com::sun::star::drawing::Shape s

Methods' Summary
bind binds ::com::sun::star::drawing::Shape s together.  
unbind breaks a ::com::sun::star::drawing::Shape into its line segments  
Methods' Details
bind
::com::sun::star::drawing::XShape
bind( [in] ::com::sun::star::drawing::XShapes  xShapes );

Description
binds ::com::sun::star::drawing::Shape s together.
Parameter xShapes
a container with ::com::sun::star::drawing::Shape s that will be bind toghether. All ::com::sun::star::drawing::Shapes will be converted to a ::com::sun::star::drawing::PolyPolygonBezierShape and the lines will be connected. 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 line segment from the supplied ::com::sun::star::drawing::Shape s. It is also added to the ::com::sun::star::drawing::GenericDrawPage of the source ::com::sun::star::drawing::Shape s.
unbind
void
unbind( [in] ::com::sun::star::drawing::XShape  xShape );

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