ActivePointColor: IGxColor;
The ActivePointColor property determines the point color of the last selected object.
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.ActivePointColor := GxColor.FromName("Blue");
End Sub UserProc;
After executing the example the point color for the last selected object is set.
See also: