Project.SaveTo Method

Definition

Saves the project to the specified file.

Overloads

SaveTo(Stream)

Save the project to the specified IO stream. Unlike SaveAs, project storage is not changed after saving.

SaveTo(String)

Save the project to the specified file. Unlike SaveAs, project storage is not changed after saving.

SaveTo(Stream)

Save the project to the specified IO stream. Unlike SaveAs, project storage is not changed after saving.

public:
 void SaveTo(System::IO::Stream ^ projectStream);
public void SaveTo (System.IO.Stream projectStream);
member this.SaveTo : System.IO.Stream -> unit
Public Sub SaveTo (projectStream As Stream)

Parameters

projectStream
Stream

Specifies IO stream to which to save the project.

Applies to

SaveTo(String)

Save the project to the specified file. Unlike SaveAs, project storage is not changed after saving.

public:
 void SaveTo(System::String ^ fileName);
public void SaveTo (string fileName);
member this.SaveTo : string -> unit
Public Sub SaveTo (fileName As String)

Parameters

fileName
String

Specifies the file to which to save the project.

Applies to