Project.Save Method

Definition

Saves the project to a file.

Overloads

Save(TextWriter)

Saves the project in the specified TextWriter object.

Save(String)

Saves the project to the specified file.

Save(String, Encoding)

Saves the project in the specified file with the specified encoding.

Save(TextWriter)

Saves the project in the specified TextWriter object.

public:
 void Save(System::IO::TextWriter ^ textWriter);
public void Save (System.IO.TextWriter textWriter);
member this.Save : System.IO.TextWriter -> unit
Public Sub Save (textWriter As TextWriter)

Parameters

textWriter
TextWriter

The TextWriter object in which to save the project.

Applies to

Save(String)

Saves the project to the specified file.

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

Parameters

projectFileName
String

The name of the file in which to save the project.

Applies to

Save(String, Encoding)

Saves the project in the specified file with the specified encoding.

public:
 void Save(System::String ^ projectFileName, System::Text::Encoding ^ encoding);
public void Save (string projectFileName, System.Text.Encoding encoding);
member this.Save : string * System.Text.Encoding -> unit
Public Sub Save (projectFileName As String, encoding As Encoding)

Parameters

projectFileName
String

The name of the file in which to save the project.

encoding
Encoding

The Encoding value with which to save the file.

Applies to