IWxSelectionStyle.ActiveRotationPointColor

Syntax

ActiveRotationPointColor: IGxColor;

Description

The ActiveRotationPointColor property determines the color of the rotation point for the last (active) selected object.

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.RotationPointVisible := True;

SStyle.ActiveRotationPointColor := GxColor.FromName("Black");

End Sub UserProc;

After executing the example the rotation point for the selected object is shown and the color of an active rotation point is set.

See also:

IWxSelectionStyle