Spread WPF Documentation
FooterRight Property
Example 


Gets or sets the text and format of the right footer on printed pages.
Syntax
'Declaration
 
Public Property FooterRight As System.String
'Usage
 
Dim instance As PrintInfo
Dim value As System.String
 
instance.FooterRight = value
 
value = instance.FooterRight
public System.string FooterRight {get; set;}

Property Value

The text and format of the right footer for the printed pages of the report. The default value is an empty string, which means that no footers are printed.
Example
This example sets the FooterRight property.
GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.FirstPageNumber = 5;
printset.HeaderLeft = "This is Page &P";
printset.HeaderRight = "right";
printset.FooterCenter = "Footer Center";
printset.FooterLeft = "Footer Left";
printset.FooterRight = "Footer Right";
gcSpreadSheet1.Sheets[0].PrintInfo = printset;
gcSpreadSheet1.SavePDF("c:\\zipfile\\test.pdf", 0);
Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.FirstPageNumber = 5
printset.HeaderLeft = "This is Page &P"
printset.HeaderRight = "right"
printset.FooterCenter = "Footer Center"
printset.FooterLeft = "Footer Left"
printset.FooterRight = "Footer Right"
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF("c:\zipfile\test.pdf", 0)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

PrintInfo Class
PrintInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.