Selection.Export Method

Visio Automation Reference

Exports an object from Microsoft Office Visio to a file format such as .bmp, .dib, .dwg, .dxf, .emf, .emz, .gif, .htm, .jpg, .png, .svg, .svgz, .tif, or .wmf.

Version Information
 Version Added:  Visio 3.0

Syntax

expression.Export(FileName)

expression   A variable that represents a Selection object.

Parameters

Name Required/Optional Data Type Description
FileName Required String The fully qualified path and name of the file to receive the exported object.

Return Value
Nothing

Remarks

The file name extension indicates which export filter to use. If the filter is not installed, the Export method returns a compiler error in your Visual Basic or VBA project. The Export method uses the default preference settings for the specified filter and does not prompt the user for non-default arguments.

The Export method of a Page object supports saving to HTML file format using the extension .htm or .html. When pages are exported, Visio uses the settings that were last selected in the Save As dialog box.

If the specified file already exists, Visio replaces it without prompting the user.

Example

This example shows how to export a Visio page as a bitmap (.bmp) file. It assumes a drawing page is open and active in Microsoft Office Visio.

Visual Basic for Applications
  Public Sub Export_Example()
    Dim vsoPage As Visio.Page
    Set vsoPage = ActivePage
    vsoPage.Export ("C:\\myExportedPage.bmp")
End Sub

See Also