SelectionPointStyle: WxSelectionPointStyle;
The SelectionPointStyle property determines the type of object selection. Actually, it determines the number of points, which will be displayed when an object is selected in a workspace.
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.SelectionPointStyle := WxSelectionPointStyle.Corners;
End Sub UserProc;
After executing the example four points for the selection type are set.
See also: