RotationPointVisible: Boolean;
The RotationPointVisible property determines whether the rotation point for the selected object is displayed. If the property is set to True, the rotation point is displayed, if the it is set to False, it the rotation point is not displayed.
The default property value is True.
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 := New GxColor.CreateRGB(0,128,255);
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: