IWxSelectionStyle.RoundedRectanglePointColor

Syntax

RoundedRectanglePointColor: IGxColor;

Description

The RoundedRectanglePointColor property determines the color of a rounded point for the 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.RoundedRectanglePointColor := GxColor.FromName("Blue");

End Sub UserProc;

After executing the example will the color of rounded points for the selected object is set.

See also:

IWxSelectionStyle