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

(Global Index)

[ DEPRECATED ]

Syntax

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

Description

Objects implementing this interface can be used to arrange Shape s.

Method 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.

Method Details



arrange

Syntax

void arrange (
com::sun::star::drawing::XShapes xShapes,
com::sun::star::drawing::Arrangement eType );

Description

applies the specified Arrangement to the specified collection of Shape s.


bringToFront

Syntax

void bringToFront (
com::sun::star::drawing::XShapes xShapes,
short nSteps );

Description

moves the specified Shape s by a specified number of objects more to the front.


sendToBack

Syntax

void sendToBack (
com::sun::star::drawing::XShapes xShapes,
short nSteps );

Description

moves the specified Shape s nSteps objects more to the back.


setBehindShape

Syntax

void setBehindShape (
com::sun::star::drawing::XShapes xShapes,
com::sun::star::drawing::XShape xShape );

Description

moves the specified collection of Shape s behind the specified single Shape .


setInFrontOf

Syntax

void setInFrontOf (
com::sun::star::drawing::XShapes xShapes,
com::sun::star::drawing::XShape xShape );

Description

moves the specified collection of Shape s in front of the specified single Shape .


reverseOrder

Syntax

void reverseOrder (
com::sun::star::drawing::XShapes xShapes );

Description

reverses the order of the specified collection of Shape s.

Top of Page