Project.SaveAs Method

Definition

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.

Applies to