GrapeCity.Xaml.SpreadSheet.Data
RepeatColumnEnd Property
Example 


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

Property Value

The column index of the last column of the range of columns to print on the left of every page.
Example
This example sets the RepeatColumnEnd 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