Shape.Import Method

Visio Automation Reference

Imports a file into the current document.

Version Information
 Version Added:  Visio 3.0

Syntax

expression.Import(FileName)

expression   A variable that represents a Shape object.

Parameters

Name Required/Optional Data Type Description
FileName Required String The name of the file to import; must be a fully qualified path.

Return Value
Shape

Remarks

The Import method imports the file specified by FileName onto a page, or into a master or group.

The file name extension indicates which import filter to use. If the filter is not installed, the Import method returns an error. The Import method uses the default preference settings for the specified filter and does not prompt the user for non-default arguments.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the Import method to import a bitmap image onto the drawing page. This example assumes that there is a file with the name sampleImage.bmp on drive C of your computer.

Visual Basic for Applications
  Public Sub Import_Example()
ActivePage.Import ("C:\sampleImage.bmp")

End Sub

See Also