IWxSelectionStyle.SelectionPointSize

Syntax

SelectionPointSize: Double;

Description

The SelectionPointSize property determines radius of connection points. Value is set in millimeters.

Example

Executing the example requires that repository contains a workspace with the WSP identifier.

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

Sub UserProc;
Var
    MB: IMetabase;
    ws: IWxWorkspace;
    view: IWxView;
    SStyle: IWxSelectionStyle;
Begin
    MB := MetabaseClass.Active;
    // Get workspace
    ws := MB.ItemById("WSP").Edit As IWxWorkspace;
    view := ws.CreateView;
    SStyle := view.SelectionStyle;
    SStyle.SelectionPointSize := 2;
    // Save changes
    (ws As IMetabaseObject).Save;
End Sub UserProc;

After executing the example the size of object selection points is set.

See also:

IWxSelectionStyle