_Workbook.SaveAs Method
Saves changes to the workbook in a different file.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Sub SaveAs ( _
Filename As Object, _
FileFormat As Object, _
Password As Object, _
WriteResPassword As Object, _
ReadOnlyRecommended As Object, _
CreateBackup As Object, _
AccessMode As XlSaveAsAccessMode, _
ConflictResolution As Object, _
AddToMru As Object, _
TextCodepage As Object, _
TextVisualLayout As Object, _
Local As Object _
)
'Usage
Dim instance As _Workbook
Dim Filename As Object
Dim FileFormat As Object
Dim Password As Object
Dim WriteResPassword As Object
Dim ReadOnlyRecommended As Object
Dim CreateBackup As Object
Dim AccessMode As XlSaveAsAccessMode
Dim ConflictResolution As Object
Dim AddToMru As Object
Dim TextCodepage As Object
Dim TextVisualLayout As Object
Dim Local As Object
instance.SaveAs(Filename, FileFormat, _
Password, WriteResPassword, ReadOnlyRecommended, _
CreateBackup, AccessMode, ConflictResolution, _
AddToMru, TextCodepage, TextVisualLayout, _
Local)
void SaveAs(
Object Filename,
Object FileFormat,
Object Password,
Object WriteResPassword,
Object ReadOnlyRecommended,
Object CreateBackup,
XlSaveAsAccessMode AccessMode,
Object ConflictResolution,
Object AddToMru,
Object TextCodepage,
Object TextVisualLayout,
Object Local
)
Parameters
Filename
Type: System.ObjectOptional Object. A string that indicates the name of the file to be saved. You can include a full path; if you don't, Microsoft Excel saves the file in the current folder.
FileFormat
Type: System.ObjectOptional Object. The file format to use when you save the file. For a list of valid choices, see the FileFormat property. For an existing file, the default format is the last file format specified; for a new file, the default is the format of the version of Excel being used.
Password
Type: System.ObjectOptional Object. A case-sensitive string (no more than 15 characters) that indicates the protection password to be given to the file.
WriteResPassword
Type: System.ObjectOptional Object. A string that indicates the write-reservation password for this file. If a file is saved with the password and the password isn't supplied when the file is opened, the file is opened as read-only.
ReadOnlyRecommended
Type: System.ObjectOptional Object. True to display a message when the file is opened recommending that the file be opened as read-only.
CreateBackup
Type: System.ObjectOptional Object. True to create a backup file.
AccessMode
Type: Microsoft.Office.Interop.Excel.XlSaveAsAccessModeOptional XlSaveAsAccessMode.
ConflictResolution
Type: System.ObjectOptional XlSaveConflictResolution.
AddToMru
Type: System.ObjectOptional Object. True to add this workbook to the list of recently used files. The default value is False.
TextCodepage
Type: System.ObjectOptional Object. Not used in U.S. English Microsoft Excel.
TextVisualLayout
Type: System.ObjectOptional Object. Not used in U.S. English Microsoft Excel.
Local
Type: System.ObjectOptional Object. True saves files against the language of Microsoft Excel (including control panel settings). False (default) saves files against the language of Visual Basic for Applications (VBA) (which is typically U.S. English unless the VBA project where Workbooks.Open is run from is an old internationalized XL5/95 VBA project).