GrapeCity.Xaml.SpreadSheet.Data
RowEnd Property (PrintInfo)
Example 


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

Property Value

The row index of the last row to print in a cell range.
Example
This example sets the RowEnd property.
GrapeCity.Xaml.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Xaml.SpreadSheet.Data.PrintInfo();
printset.RowStart = 0;
printset.RowEnd = 45;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;
Dim printset As New GrapeCity.Xaml.SpreadSheet.Data.PrintInfo()
printset.RowStart = 0
printset.RowEnd = 45
GcSpreadSheet1.Sheets(0).PrintInfo = printset
See Also

Reference

PrintInfo Class
PrintInfo Members