GrapeCity.Xaml.SpreadSheet.Data
RepeatRowEnd Property
Example 


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
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

PrintInfo Class
PrintInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options