IWxSelectionStyle.GroupFrameVisible

Syntax

GroupFrameVisible: Boolean;

Description

The GroupFrameVisible property determines whether the frame of the selected group is displayed. If the property is set to True, the frame is displayed, if it is set to False, the frame is not displayed.

The default property value is True.

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