IWxSelectionStyle.SelectedPointColor

Syntax

SelectedPointColor: IGxColor;

Description

The SelectedPointColor property determines the color of selection points for all next to the last selected objects.

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.SelectedPointColor := GxColor.FromName("Blue");

End Sub UserProc;

After executing the example the color of selection points for all next to the last selected objects is set.

See also:

IWxSelectionStyle