IWxWorkspace.Name

Syntax

Name: String;

Description

The Name property determines a workspace name.

Example

Executing the example requires that repository contains a workspace with the WSP identifier.

Add links to the Andy, Drawing, Metabase system assemblies.

Sub  Userproc;
Var
    mb: IMetabase;
    wsp: IWxWorkspace;
Begin
    
// Get workspace
    mb := MetabaseClass.Active;
    wsp := mb.ItemById(
"WSP").Edit As  IWxWorkspace;
    wsp.Name := 
"WSP1";
    wsp.Size := New  GxSizeF.Create(
100,  100);
    (wsp As  IMetabaseObject).Save;
End  Sub  Userproc;

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

See also:

IWxWorkspace