Gets or sets the number or letter displayed in the first row header on this sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Property StartingRowNumber As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Integer
instance.StartingRowNumber = value
value = instance.StartingRowNumber |
C# | |
---|
public int StartingRowNumber {get; set;} |
Property Value
Integer number to start the numbering of the columns displayed in the headers
Example
This example sets the starting column and row numbering for the active sheet.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.StartingColumnNumber = 3;
fpSpread1.ActiveSheet.StartingRowNumber = 4; |
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.StartingColumnNumber = 3
FpSpread1.ActiveSheet.StartingRowNumber = 4
|
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also