IWxSelectionStyle.SelectedRotationPointColor

Syntax

SelectedRotationPointColor: IGxColor;

Description

The SelectedRotationPointColor point determines the color of rotation 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.SelectedRotationPointColor := GxColor.FromName("Blue");

End Sub UserProc;

Executing the example will specify the color of rotation points for all next to the last selected objects.

See also:

IWxSelectionStyle