DocumentSave(String) Method |
Saves the document to a file. Automatically determines the save format from the extension.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 21.2.0
Syntax
public SaveOutputParameters Save(
string fileName
)
Public Function Save (
fileName As String
) As SaveOutputParameters
public:
SaveOutputParameters^ Save(
String^ fileName
)
member Save :
fileName : string -> SaveOutputParameters
Parameters
- fileName
- Type: SystemString
The name for the document. If a document with the
specified file name already exists, the existing document is overwritten.
Return Value
Type:
SaveOutputParametersAdditional information that you can optionally use.
Examples
Shows how to open a document and convert it to .PDF.
Document doc = new Document(MyDir + "Document.docx");
doc.Save(ArtifactsDir + "Document.ConvertToPdf.pdf");
See Also