Description
Sets or returns the 0-based number of the first row within the rectangular area of cells.
C#
public int FirstRow{ get ; } |
vb.net
Public ReadOnly Property FirstRow() As Integer |
Examples
C#
//--- Get FirstRow int row = a.FirstRow; //--- Set FirstRow a.FirstRow = 5; |
vb.net
'--- Get FirstRow Dim row As Integer = a.FirstRow '--- Set FirstRow a.FirstRow = 5 |