ExportToFile(FileName: String; FormatTag: String);
FileName. Name of the file, to which the object is exported
FormatTag. Format of the file, to which the object is to be exported. It is possible to export to the following formats:
bmp;
png;
jpg;
gif;
tiff.
The ExportToFile method exports a workspace into a file of the specified format.
Executing the example requires a form with the Button1 button, the WorkspaceBox component named WorkspaceBox1 and a data source for the WorkspaceBox1.
Add links to the Andy, Workspace system assemblies.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
ws: IWxWorkspace;
view: IWxView;
Exp: IWxViewExporter;
Begin
ws := UiWorkspace1.WxWorkspace;
view := ws.CreateView;
view := ws.Views.Item(0);
Exp := New WxViewExporter.Create;
Exp.WxView := view;
Exp.PixelHeight := 500;
Exp.PixelHeight := 300;
Exp.FullLengthTitle := True;
Exp.ExportToFile("C:\WP.gif", "gif");
End Sub Button1OnClick;
After executing this example the workspace is exported into the WS.gif file.
See also: