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

interface XShapeArranger
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XShapeArranger
[ DEPRECATED ]
Description
Objects implementing this interface can be used to arrange Shape s.

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

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

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

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

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

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

Description
reverses the order of the specified collection of Shape s.
Top of Page