In This Topic
Handles the export (or printing) of all the sheets to PDF as a stream.
Syntax
'Declaration
Public Overloads Sub SavePdf( _
ByVal As Stream _
)
'Usage
Dim instance As FpSpread
Dim stream As Stream
instance.SavePdf(stream)
public void SavePdf(
Stream
)
Parameters
- stream
- Stream to save the file to as a PDF stream
Example
This example saves the Spread to a PDF file.
See Also