IWxSelectionStyle.SelectionPointSize

Syntax

SelectionPointSize: Double;

Description

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

Example

Executing the example requires an existing ws object of the IWxWorkspace type.

Sub UserProc;

Var

ws: IWxWorkspace;

view : IWxView;

SStyle : IWxSelectionStyle;

Begin

view := ws.CreateView;

SStyle := view.SelectionStyle;

SStyle.SelectionPointSize := 2;

End Sub UserProc;

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

See also:

IWxSelectionStyle