Row Property
Row
Gets or sets the 0-based row index.
This property stores the row index of the reference. The default value is 0.
Declaration
public int Row { get; set; }
Public Property Row As Integer
Examples
Reference reference = new Reference();
reference.Row = 3;
int row = reference.Row;