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


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

Property Value

The row index of the first row to print in a cell range.
Example
This example sets the RowStart 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