IWxSelectionStyle.GroupFrameColor

Syntax

GroupFrameColor: IGxColor;

Description

The GroupFrameColor property determines the frame color for the selected group.

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

SStyle.GroupFrameColor := New GxColor.CreateRGB(0,128,255);

End Sub UserProc;

After executing the example a frame of the defined color is displayed for the selected object group in a workspace.

See also:

IWxSelectionStyle