Share via


SaveAsEx Method [Visio 2003 SDK Documentation]

Saves a document with a file name using extra information passed in an argument.

object**.SaveAsEx**FileName, SaveFlags

object     Required. An expression that returns a Document object.

FileName     Required String. The file name for the document.

SaveFlags     Required Integer. How to save the file.

Version added

4.0

Remarks

The SaveAsEx method is identical to the SaveAs method, except that it provides an extra argument in which the caller can specify how the document is to be saved.

The SaveFlags argument should be a combination of the following values.

Constant Value Description

visSaveAsRO

&H1

The document is saved as read-only.

visSaveAsWS

&H2

The current workspace is saved with the file.

visSaveAsListInMRU

&H4

The document is included in the Most Recently Used (MRU) list. By default, Save and SaveAs do not place the document into the MRU list.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the SaveAsEx method. Before running this macro, change path to the location where you want to save the drawing, and change filename to the name you'd like to assign the file.

Public Sub SaveAsEx_Example() 

    'Use the SaveAsEx method to save the drawing as a 
    'new read-only drawing. 
    ThisDocument.SaveAsEx "path\filename.vsd", visSaveAsRO
 
End Sub  

Applies to | Document object

See Also | Save method | SaveAs method