[]
Saves the current PDF document to a file using the default mode (no incremental update, not linearized).
public void Save(string fileName)
Public Sub Save(fileName As String)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of the PDF file to create. |
Saves the current PDF document to a Stream using the default mode (no incremental update, not linearized).
public void Save(Stream stream)
Public Sub Save(stream As Stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The Stream object to use for saving the document. |
Saves the current PDF document to a Stream using the specified save mode.
public void Save(Stream stream, SaveMode saveMode)
Public Sub Save(stream As Stream, saveMode As SaveMode)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The Stream object to use for saving the document. |
| SaveMode | saveMode | The PDF saving mode. |
Saves the current PDF document to a file using a specified save mode.
public void Save(string fileName, SaveMode saveMode)
Public Sub Save(fileName As String, saveMode As SaveMode)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of the PDF file to create. |
| SaveMode | saveMode | The PDF save mode. |
Saves the current PDF document to a Stream using a specified PDF save options.
public void Save(Stream stream, SavePdfOptions saveOptions)
Public Sub Save(stream As Stream, saveOptions As SavePdfOptions)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The Stream object to use for saving the document. |
| SavePdfOptions | saveOptions | The PDF save options. |
Saves the current PDF document to a file using a specified PDF save options.
public void Save(string fileName, SavePdfOptions saveOptions)
Public Sub Save(fileName As String, saveOptions As SavePdfOptions)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of the PDF file to create. |
| SavePdfOptions | saveOptions | The PDF save options. |
Saves the current PDF document to a file, optionally using incremental update mode.
public void Save(string fileName, bool incrementalUpdate)
Public Sub Save(fileName As String, incrementalUpdate As Boolean)
| Type | Name | Description |
|---|---|---|
| string | fileName | The name of the PDF file to create. |
| bool | incrementalUpdate | Indicates whether the document should be saved using incremental update. |
Saves the current PDF document to a Stream, optionally using incremental update mode.
public void Save(Stream stream, bool incrementalUpdate)
Public Sub Save(stream As Stream, incrementalUpdate As Boolean)
| Type | Name | Description |
|---|---|---|
| Stream | stream | The Stream object to use for saving the document. |
| bool | incrementalUpdate | Indicates whether the document should be saved using incremental update. |