[]
Handles the export (or printing) of all the sheets to PDF as a file.
public void SavePdf(string fileName)
Public Sub SavePdf(fileName As String)
Type | Name | Description |
---|---|---|
string | fileName | Path and file name of the PDF file |
Handles the export (or printing) of all the sheets to PDF as a file.
public void SavePdf(string fileName, PdfSecurity pdfSecurity)
Public Sub SavePdf(fileName As String, pdfSecurity As PdfSecurity)
Type | Name | Description |
---|---|---|
string | fileName | Path and file name of the PDF file |
PdfSecurity | pdfSecurity | The password to encrypt pdf file |
Handles the export (or printing) of all the sheets to PDF as a stream.
public void SavePdf(Stream stream)
Public Sub SavePdf(stream As Stream)
Type | Name | Description |
---|---|---|
Stream | stream | Stream to save the file to as a PDF stream |
Handles the export (or printing) of all the sheets to PDF as a stream.
public void SavePdf(Stream stream, PdfSecurity pdfSecurity)
Public Sub SavePdf(stream As Stream, pdfSecurity As PdfSecurity)
Type | Name | Description |
---|---|---|
Stream | stream | Stream to save the file to as a PDF stream |
PdfSecurity | pdfSecurity | The password to encrypt pdf file |
Handles the export (or printing) of the specified sheet to PDF as a stream.
public bool SavePdf(int sheet, Stream stream)
Public Function SavePdf(sheet As Integer, stream As Stream) As Boolean
Type | Name | Description |
---|---|---|
int | sheet | Index of sheet to print to PDF; -1 for all sheets |
Stream | stream | Stream to save the file to as a PDF stream |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a stream.
public bool SavePdf(int sheet, Stream stream, PdfSecurity pdfSecurity)
Public Function SavePdf(sheet As Integer, stream As Stream, pdfSecurity As PdfSecurity) As Boolean
Type | Name | Description |
---|---|---|
int | sheet | Index of sheet to print to PDF; -1 for all sheets |
Stream | stream | Stream to save the file to as a PDF stream |
PdfSecurity | pdfSecurity | The password to encrypt pdf file |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a stream.
public bool SavePdf(SheetView sheetView, Stream stream)
Public Function SavePdf(sheetView As SheetView, stream As Stream) As Boolean
Type | Name | Description |
---|---|---|
SheetView | sheetView | Sheet to be printed |
Stream | stream | Stream to save the file to as a PDF stream |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a stream.
public bool SavePdf(SheetView sheetView, Stream stream, PdfSecurity pdfSecurity)
Public Function SavePdf(sheetView As SheetView, stream As Stream, pdfSecurity As PdfSecurity) As Boolean
Type | Name | Description |
---|---|---|
SheetView | sheetView | Sheet to be printed |
Stream | stream | Stream to save the file to as a PDF stream |
PdfSecurity | pdfSecurity | The password to encrypt pdf file |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a file.
public bool SavePdf(int sheet, string fileName)
Public Function SavePdf(sheet As Integer, fileName As String) As Boolean
Type | Name | Description |
---|---|---|
int | sheet | Index of sheet to print; -1 for all sheets |
string | fileName | Path and file name of PDF file |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a file.
public bool SavePdf(int sheet, string fileName, PdfSecurity pdfSecurity)
Public Function SavePdf(sheet As Integer, fileName As String, pdfSecurity As PdfSecurity) As Boolean
Type | Name | Description |
---|---|---|
int | sheet | Index of sheet to print; -1 for all sheets |
string | fileName | Path and file name of PDF file |
PdfSecurity | pdfSecurity | The password to encrypt pdf file |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a file.
public bool SavePdf(SheetView sheetView, string fileName)
Public Function SavePdf(sheetView As SheetView, fileName As String) As Boolean
Type | Name | Description |
---|---|---|
SheetView | sheetView | Sheet to be printed |
string | fileName | Path and file name of PDF file |
Type | Description |
---|---|
bool |
Handles the export (or printing) of the specified sheet to PDF as a file.
public bool SavePdf(SheetView sheetView, string fileName, PdfSecurity pdfSecurity)
Public Function SavePdf(sheetView As SheetView, fileName As String, pdfSecurity As PdfSecurity) As Boolean
Type | Name | Description |
---|---|---|
SheetView | sheetView | Sheet to be printed |
string | fileName | Path and file name of PDF file |
PdfSecurity | pdfSecurity | The password to encrypt pdf file |
Type | Description |
---|---|
bool |