SavePdf(SheetView,String,PdfSecurity) Method
In This Topic
Handles the export (or printing) of the specified sheet to PDF as a file.
Syntax
'Declaration
Public Overloads Function SavePdf( _
ByVal As SheetView, _
ByVal As String, _
ByVal As PdfSecurity _
) As Boolean
'Usage
Dim instance As FpSpread
Dim sheetView As SheetView
Dim fileName As String
Dim pdfSecurity As PdfSecurity
Dim value As Boolean
value = instance.SavePdf(sheetView, fileName, pdfSecurity)
public bool SavePdf(
SheetView ,
string ,
PdfSecurity
)
Parameters
- sheetView
- Sheet to be printed
- fileName
- Path and file name of PDF file
- pdfSecurity
- The password to encrypt pdf file
Example
This example saves to PDF.
See Also