Use one of the SavePDF methods or one of the SavePdfToResponse methods. The former saves the Spread control to the specified PDF file. The latter saves Spread to the specified PDF response object. The PrintInfo class is only used when saving to a PDF file.
You can also save a file from inside Spread Designer (File menu, Print, SaveToPDF).
Return to the overview at Saving Data to a File.
Using Code
Use the SavePDF method.
Example
This example saves to PDF with the SavePDF method.
C# | Copy Code |
---|---|
FpSpread1.SavePdf("c:\\test.pdf");
|
VB | Copy Code |
---|---|
FpSpread1.SavePdf("c:\test.pdf")
|
Using the Spread Designer
- Select the File menu.
- Choose the Print option.
- Choose the SaveToPDF option.
- For the Save As type, select PDF files (.PDF).
- Specify the path and file name to which to save the file, and then click Save.
- Click OK to close the Spread Designer.