GrapeCity.Xaml.SpreadSheet.Data
RepeatRowEnd Property
Example 


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

Property Value

The row index for the last row of the range of rows to print at the top of every page.
Example
This example sets the RepeatRowEnd 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