IWxView.ExplorerMode

Syntax

ExplorerMode: Boolean;

Description

The ExplorerMode property determines how shapes are selected if ActiveTool is set to SelectOnly.

Comments

If the property is set True, only the text within objects can be selected, if the property is set to False, the whole object can be selected.

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;

Begin

view := ws.CreateView;

view.ActiveTool := WxTool.SelectOnly;

view.ExplorerMode := False;

End Sub UserProc;

After executing the example the SelectOnly mode is set and selection of the whole object is enabled.

See also:

IWxView