PdfDocument.Save Method (String)

Saves the document to the file with the specified name.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void Save(
	string fileName
)
VB
Public Sub Save ( 
	fileName As String
)

Parameters

fileName
Type: System.String
The name of the file to save document to.

Remarks

This method saves the document using the default save options. Use Save(String, PdfSaveOptions) overload to specify custom save options.

See Also