IWxWorkspace.Name

Syntax

Name: String;

Description

The Name property determines a workspace name.

Example

Executing the example requires an existing ws object of the IWxWorkspace type.

Sub UserProc;

Var

ws: IWxWorkspace;

Begin

ws.Name := "My Wsp";

ws.Size := New GxSizeF.Create(100,100);

End Sub UserProc;

After executing the example a workspace name and size are changed.

See also:

IWxWorkspace