GlueConnector: Boolean;
The GlueConnector property determines whether a link in a free space can be created.
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 default property value is False.
Sub UserProc;
Var
ws: IWxWorkspace;
view : IWxView;
Shape : IWxShape;
Begin
view := ws.Views.Item(0);
view.GlueConnector := True;
End Sub UserProc;
After executing the example a link can be created only between objects.
See also: