IWxShape.SendToBack

Syntax

SendToBack;

Description

The SendToBack method sends an object to back.

Example

Executing the example requires an existing ws object of the IWxWorkspace type. The workspace must contain several shapes.

Sub UserProc;

Var

ws: IWxWorkspace;

Shape: IWxShape;

Begin

ws.BeginUpdate;

Shape := ws.Shapes.Item(0);

Shape.SendToBack;

ws.EndUpdate;

End Sub UserProc;

After executing the example the selected object is sent to back.

See also:

IWxShape