ChartSheet.SaveAs Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Saves changes to the ChartSheet in a different file.
public void SaveAs (string Filename, object FileFormat, object Password, object WriteResPassword, object ReadOnlyRecommended, object CreateBackup, object AddToMru, object TextCodepage, object TextVisualLayout, object Local);
abstract member SaveAs : string * obj * obj * obj * obj * obj * obj * obj * obj * obj -> unit
Public Sub SaveAs (Filename As String, Optional FileFormat As Object, Optional Password As Object, Optional WriteResPassword As Object, Optional ReadOnlyRecommended As Object, Optional CreateBackup As Object, Optional AddToMru As Object, Optional TextCodepage As Object, Optional TextVisualLayout As Object, Optional Local As Object)
Parameters
- Filename
- String
The name of the file to be saved. You can include a full path; if you do not, Microsoft Office Excel saves the file in the current folder.
- FileFormat
- 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
- Object
A case-sensitive string (no more than 15 characters) that indicates the protection password to be given to the file.
- WriteResPassword
- Object
The write-reservation password for this file. If a file is saved with the password and the password is not supplied when the file is opened, the file is opened as read-only.
- ReadOnlyRecommended
- Object
true
to display a message when the file is opened, recommending that the file be opened as read-only.
- CreateBackup
- Object
true
to create a backup file.
- AddToMru
- Object
true
to add this workbook to the list of recently used files. The default value is false
.
- TextCodepage
- Object
Not used in U.S. English Excel.
- TextVisualLayout
- Object
Not used in U.S. English Excel.
- Local
- Object
true
saves files against the language of Excel (including control panel settings). false
(default) saves files against the language of Visual Basic for Applications (which is typically US English unless the VBA project where Workbooks.Open is run from is an old internationalized XL5/95 VBA project).
Examples
The following code example uses the SaveAs method to save an unprotected copy of the current Microsoft.Office.Tools.Excel.ChartSheet.
private void SaveCopy()
{
Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
Globals.Sheet1.Range["B1", "B5"].Value2 = 55;
this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
Excel.XlRowCol.xlColumns);
this.ChartType = Excel.XlChartType.xl3DColumn;
this.SaveAs("CopyOfOriginal.xlsx");
}
Private Sub SaveCopy()
Globals.Sheet1.Range("A1", "A5").Value2 = 22
Globals.Sheet1.Range("B1", "B5").Value2 = 55
Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
Excel.XlRowCol.xlColumns)
Me.ChartType = Excel.XlChartType.xl3DColumn
Me.SaveAs("CopyOfOriginal.xlsx", ReadOnlyRecommended:=False)
End Sub
Remarks
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.