Spread Silverlight Documentation
RepeatColumnStart Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > PrintInfo Class : RepeatColumnStart Property
Gets or sets the first column of a range of columns to print on the left of each page.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property RepeatColumnStart As System.Integer
'Usage
 
Dim instance As PrintInfo
Dim value As System.Integer
 
instance.RepeatColumnStart = value
 
value = instance.RepeatColumnStart
[System.ComponentModel.DefaultValue()]
public System.int RepeatColumnStart {get; set;}

Property Value

The column index of the first column of the range of columns to print on the left of every page.
Example
This example uses the RepeatColumnStart property.
SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "PDF File (.pdf)|*.pdf";
bool? useClick = saveFileDialog.ShowDialog();
if (useClick == true)
{
    var stream = saveFileDialog.OpenFile();

GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.RepeatColumnEnd = 2;
printset.RepeatColumnStart = 0;
printset.RepeatRowStart = 0;
printset.RepeatRowEnd = 2;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;

gcSpreadSheet1.SavePDF(stream, 0);
 stream.Dispose();
}
Dim saveFileDialog = New SaveFileDialog()
saveFileDialog.Filter = "PDF File(.pdf)|*.pdf"
Dim useClick As Boolean = saveFileDialog.ShowDialog()
If (useClick = True) Then
Dim stream = saveFileDialog.OpenFile()

Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.RepeatColumnEnd = 2
printset.RepeatColumnStart = 0
printset.RepeatRowStart = 0
printset.RepeatRowEnd = 2
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF(stream, 0)
See Also

Reference

PrintInfo Class
PrintInfo Members