IWxWorkspace.SaveToFile

Syntax

SaveToFile(FileName: String);

Parameters

FileName. File name and path.

Description

The SaveToFile method saves a workspace to file.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

Begin

ws.SaveToFile("c:\RP.p5w");

End Sub UserProc;

After executing the example the workspace is saved to file.

See also:

IWxWorkspace