GrapeCity.Xaml.SpreadSheet.Data
RepeatColumnStart Property
Example 


GrapeCity.Xaml.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
 
<DefaultValueAttribute()>
Public Property RepeatColumnStart As Integer
'Usage
 
Dim instance As PrintInfo
Dim value As Integer
 
instance.RepeatColumnStart = value
 
value = instance.RepeatColumnStart
[DefaultValue()]
public 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 sets the RepeatColumnStart property.
GrapeCity.Xaml.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Xaml.SpreadSheet.Data.PrintInfo();
printset.RepeatColumnEnd = 2;
printset.RepeatColumnStart = 0;
printset.RepeatRowStart = 0;
printset.RepeatRowEnd = 2;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;
Dim printset As New GrapeCity.Xaml.SpreadSheet.Data.PrintInfo()
printset.RepeatColumnEnd = 2
printset.RepeatColumnStart = 0
printset.RepeatRowStart = 0
printset.RepeatRowEnd = 2
GcSpreadSheet1.Sheets(0).PrintInfo = printset
See Also

Reference

PrintInfo Class
PrintInfo Members