Project.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 the project to the specified storage.
Overloads
SaveAs(String) |
Save the project to the specified storage. The specified file becomes the storage for the project if saving successes. |
SaveAs(Stream) |
Save the project to the specified IO stream. The specified stream becomes the project storage. |
SaveAs(String)
Save the project to the specified storage. The specified file becomes the storage for the project if saving successes.
public:
void SaveAs(System::String ^ fileName);
public void SaveAs (string fileName);
member this.SaveAs : string -> unit
Public Sub SaveAs (fileName As String)
Parameters
- fileName
- String
Specifies the file to which to save the project.
Applies to
SaveAs(Stream)
Save the project to the specified IO stream. The specified stream becomes the project storage.
public:
void SaveAs(System::IO::Stream ^ projectStream);
public void SaveAs (System.IO.Stream projectStream);
member this.SaveAs : System.IO.Stream -> unit
Public Sub SaveAs (projectStream As Stream)
Parameters
- projectStream
- Stream
Specifies IO stream to which to save the project.