IWxViewExporter.WxView

Syntax

WxView: IWxView;

Description

The WxView property determines a workspace view.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

view : IWxView;

Exp: IWxViewExporter;

Begin

view := ws.CreateView;

Exp := New WxViewExporter.Create;

Exp.WxView := view;

Exp.ExportToFile("C:\WS.gif","gif");

End Sub UserProc;

After executing this example the workspace is exported into the WS.gif file.

See also:

IWxViewExporter