Project.Save Método
Definição
Salva o projeto em um arquivo.Saves the project to a file.
Sobrecargas
| Save(TextWriter) |
Salva o projeto no objeto TextWriter especificado.Saves the project in the specified TextWriter object. |
| Save(String) |
Salva o projeto no arquivo especificado.Saves the project to the specified file. |
| Save(String, Encoding) |
Salva o projeto no arquivo especificado com a codificação especificada.Saves the project in the specified file with the specified encoding. |
Save(TextWriter)
Salva o projeto no objeto TextWriter especificado.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)
Parâmetros
- textWriter
- TextWriter
O objeto TextWriter no qual salvar o projeto.The TextWriter object in which to save the project.
Aplica-se a
Save(String)
Salva o projeto no arquivo especificado.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)
Parâmetros
- projectFileName
- String
O nome do arquivo no qual salvar o projeto.The name of the file in which to save the project.
Aplica-se a
Save(String, Encoding)
Salva o projeto no arquivo especificado com a codificação especificada.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)
Parâmetros
- projectFileName
- String
O nome do arquivo no qual salvar o projeto.The name of the file in which to save the project.
- encoding
- Encoding
O valor Encoding com o qual deseja salvar o arquivo.The Encoding value with which to save the file.