You can set properties for the PrintInfo class that are used when saving to a PDF file. The properties in this class are only available when saving to a PDF file.
Return to the overview at Saving Data to a File.
Using Code
Set the PrintInfo Class properties and then use the SavePDF method.
Example
This example code sets the orientation before saving to PDF.
C# | Copy Code |
---|---|
FarPoint.Web.Spread.PrintInfo pi = new FarPoint.Web.Spread.PrintInfo(); pi.Orientation = FarPoint.Web.Spread.PrintOrientation.Landscape; FpSpread1.Sheets[0].PrintInfo = pi; FpSpread1.SavePdf("c:\\test.pdf"); |
VB | Copy Code |
---|---|
Dim pi As New FarPoint.Web.Spread.PrintInfo() pi.Orientation = FarPoint.Web.Spread.PrintOrientation.Landscape FpSpread1.Sheets(0).PrintInfo = pi FpSpread1.SavePdf("c:\test.pdf") |