IWxView.GlueConnector

Syntax

GlueConnector: Boolean;

Description

The GlueConnector property determines whether a link in a free space can be created.

Comments

If the property is set to True, a link can be created only between objects, if it is set to False, a link can be created both between objects and as a separate object, not connecting the shapes.

The property is set to False by default.

Example

Executing the example requires a form with the Button1 button, the WorkspaceBox component named WorkspaceBox1 and a data source for the WorkspaceBox1.

Add links to the Andy, Workspace system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    ws: IWxWorkspace;
    view: IWxView;
Begin
    // Get workspace for editing
    ws := UiWorkspace1.WxWorkspace;
    view := ws.CreateView;
    view := ws.Views.Item(0);
    view.GlueConnector := True;
End Sub Button1OnClick;

After executing the example a link can be created only between objects.

See also:

IWxView