Spread Windows Forms 12.0 Product Documentation
RepeatColEnd Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PrintInfo Class : RepeatColEnd Property
Gets or sets the last column for a range of columns to print at the left of each page.
Syntax
'Declaration
 
Public Property RepeatColEnd As Integer
'Usage
 
Dim instance As PrintInfo
Dim value As Integer
 
instance.RepeatColEnd = value
 
value = instance.RepeatColEnd
public int RepeatColEnd {get; set;}

Property Value

Integer column index
Remarks

This property specifies the end of the range of columns to repeat at the left of each printed page.

For columns to repeat at the left of each printed page, use the RepeatColStart property and this property, RepeatColEnd.

For rows to repeat at the top of each printed page, refer to the RepeatRowStart property and the RepeatRowEnd property.

This is similar to the repeated range in the print title when setting up the printing in Excel.

For header and footer information, refer to the Header property and Footer property.

Example
This example shows how to define the settings for customizing the printed page header and footer including a repeating range.
// Define the printer settings
FarPoint.Win.Spread.PrintInfo printset = new FarPoint.Win.Spread.PrintInfo(); 
printset.Colors = new Color[] {Color.Red, Color.Blue}; 
printset.Header = "Print Job For /nFPT Inc."; 
printset.Footer = "This is Page /p/nof /pc Pages"; 
printset.Images = new Image[] {Image.FromFile("D:\Corporate.jpg"), Image.FromFile("D:\Building.jpg")}; 
printset.RepeatColStart = 1; 
printset.RepeatColEnd = 25; 
printset.RepeatRowStart = 1; 
printset.RepeatRowEnd = 25; 

// Assign the printer settings to the sheet and print it
fpSpread1.Sheets[0].PrintInfo = printset; 
fpSpread1.PrintSheet(0);
' Define the printer settings
Dim printset As New FarPoint.Win.Spread.PrintInfo
printset.Colors = New Color() {Color.Red, Color.Blue}
printset.Header = "Print Job For /nFPT Inc."
printset.Footer = "This is Page /p/nof /pc Pages"
printset.Images = New Image() {Image.FromFile("D:\Corporate.jpg"), Image.FromFile("D:\Building.jpg")}
printset.RepeatColStart = 1
printset.RepeatColEnd = 25
printset.RepeatRowStart = 1
printset.RepeatRowEnd = 25

' Assign the printer settings to the sheet and print it
FpSpread1.Sheets(0).PrintInfo = printset
FpSpread1.PrintSheet(0)
See Also

Reference

PrintInfo Class
PrintInfo Members

User-Task Documentation

Printing a Range of Cells