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

interface XShapeArranger
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XShapeArranger
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Usage Restrictions
deprecated
Description
Objects implementing this interface can be used to arrange ::com::sun::star::drawing::Shape s.

Methods' Summary
arrange applies the specified ::com::sun::star::drawing::Arrangement to the specified collection of ::com::sun::star::drawing::Shape s.  
bringToFront moves the specified ::com::sun::star::drawing::Shape s by a specified number of objects more to the front.  
sendToBack moves the specified ::com::sun::star::drawing::Shape s nSteps objects more to the back.  
setBehindShape moves the specified collection of ::com::sun::star::drawing::Shape s behind the specified single ::com::sun::star::drawing::Shape .  
setInFrontOf moves the specified collection of ::com::sun::star::drawing::Shape s in front of the specified single ::com::sun::star::drawing::Shape .  
reverseOrder reverses the order of the specified collection of ::com::sun::star::drawing::Shape s.  
Methods' Details
arrange
void
arrange( [in] ::com::sun::star::drawing::XShapes  xShapes,
[in] ::com::sun::star::drawing::Arrangement  eType );

Description
applies the specified ::com::sun::star::drawing::Arrangement to the specified collection of ::com::sun::star::drawing::Shape s.
bringToFront
void
bringToFront( [in] ::com::sun::star::drawing::XShapes  xShapes,
[in] short  nSteps );

Description
moves the specified ::com::sun::star::drawing::Shape s by a specified number of objects more to the front.
sendToBack
void
sendToBack( [in] ::com::sun::star::drawing::XShapes  xShapes,
[in] short  nSteps );

Description
moves the specified ::com::sun::star::drawing::Shape s nSteps objects more to the back.
setBehindShape
void
setBehindShape( [in] ::com::sun::star::drawing::XShapes  xShapes,
[in] ::com::sun::star::drawing::XShape  xShape );

Description
moves the specified collection of ::com::sun::star::drawing::Shape s behind the specified single ::com::sun::star::drawing::Shape .
setInFrontOf
void
setInFrontOf( [in] ::com::sun::star::drawing::XShapes  xShapes,
[in] ::com::sun::star::drawing::XShape  xShape );

Description
moves the specified collection of ::com::sun::star::drawing::Shape s in front of the specified single ::com::sun::star::drawing::Shape .
reverseOrder
void
reverseOrder( [in] ::com::sun::star::drawing::XShapes  xShapes );

Description
reverses the order of the specified collection of ::com::sun::star::drawing::Shape s.
Top of Page