Spread Silverlight Documentation
Printing to PDF
Spread Silverlight Documentation > Developer's Guide > Managing Data > Printing to PDF

You can specify many options when saving to a PDF file. You can specify footers, headers, orientation, borders, and many other options in the PrintInfo class.

The PdfExportSettings class can be used to specify additional information about the PDF file such as title or author.

The following table displays the options that can be used when creating a print header or footer:

Control Character Printed Header or Footer Action
P Inserts the current page number
N Inserts the total number of printed pages
D Inserts the date
T Inserts the time
G Inserts an image
S

Uses strikethrough in the font

U Uses underline in the font
B Uses a bold font
I Uses italics in the font
- NoneSpecified
\" FontPrefix
K ColorPrefix
F Inserts the name of the workbook (Name property)
A Inserts the name of the sheet (Name property)

Use the & symbol in front of the control character to specify an option in the above table. For example, &P inserts the current page number.

Using Code

The following example specifies several print properties and saves to a PDF file with the SavePdf method.

CS
Copy Code

SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "PDF File (.pdf)|*.pdf";
bool? useClick = saveFileDialog.ShowDialog();
if (useClick == true)
{
    var stream = saveFileDialog.OpenFile();

 gcSpreadSheet1.Workbook.Name = "WorkBook";
 gcSpreadSheet1.Sheets[0].Name = "Sheet 0";
GrapeCity.Windows.SpreadSheet.Data.PrintInfo printtest;
printtest = gcSpreadSheet1.Sheets[0].PrintInfo;
printtest.FooterCenter = "This is Page &P";
printtest.HeaderCenter = "&A of &F";

printtest.HeaderLeft = "&KFFFF00Color &KFF0000RedColor";
printtest.BestFitColumns = true;
printtest.UseMax = true;

GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings test;
test = new GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings();
test.Title = "Print PDF";
test.Author = "GrapeCity, Inc.";
test.DisplayDocTitle = true;
test.FitWindow = true;
gcSpreadSheet1.SavePdf(stream, test, 0);

stream.Dispose();
}

VB.NET
Copy Code

Dim saveFileDialog = New SaveFileDialog()
saveFileDialog.Filter = "PDF File(.pdf)|*.pdf"
Dim useClick As Boolean = saveFileDialog.ShowDialog()
If (useClick = True) Then
Dim stream = saveFileDialog.OpenFile()

GcSpreadSheet1.Workbook.Name = "WorkBook"
GcSpreadSheet1.Sheets(0).Name = "Sheet 0"
Dim printtest As GrapeCity.Windows.SpreadSheet.Data.PrintInfo
printtest = GcSpreadSheet1.Sheets(0).PrintInfo
printtest.FooterCenter = "This is Page &P"
printtest.HeaderCenter = "&A of &F"

printtest.HeaderLeft = "&KFFFF00Color &KFF0000RedColor"
printtest.BestFitColumns = True
printtest.UseMax = True


Dim test As GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings
test = New GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings()
test.Title = "Print PDF"
test.Author = "GrapeCity, Inc."
test.DisplayDocTitle = True
test.FitWindow = True
GcSpreadSheet1.SavePdf(stream, test, 0)

End If

See Also