IWxSelectedShapes.Add

Syntax

Add(Value: IWxShape);

Parameters

Value. Shape.

Description

The Add method adds a shape to a collection of selected shapes.

Example

Executing the example requires a form with the Button1 button, the WorkspaceBox component and the UiWorkspace component named UiWorkspace1, which is a data source for WorkspaceBox.

Add links to the Andy, Drawing, Workspace system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    ws: IWxWorkspace;
    Rect: IWxRectangle;
    Ellipse: IWxEllipse;
    pos: IGxPointF;
    SelectS: IWxSelectedShapes;
Begin
    ws := UiWorkspace1.WxWorkspace;
    ws.BeginUpdate;
    Rect := ws.CreateRectangle;
    pos := 
New GxPointF.Create(2010);
    Rect.PinPosition := pos;
    Rect.Text := 
"Rectangle";
    Ellipse := ws.CreateEllipse;
    pos := 
New GxPointF.Create(4050);
    Ellipse.PinPosition := pos;
    Ellipse.Text := 
"Ellipse";
    SelectS := WorkspaceBox1.View.SelectedShapes;
    SelectS.Add(Ellipse);
    SelectS.Add(Rect);
    SelectS.Align(WxShapesAlignment.VerticalCenter);
    ws.EndUpdate;
End Sub Button1OnClick;

After executing the example the created objects are selected and aligned to the vertical center.

See also:

IWxSelectedShapes