Returns a RowProperties object representing the row specified by index.

 public RowProperties GetRowProperties(int rowIndex)
Public Function GetRowProperties(ByVal rowIndex As Integer) As RowProperties

The 0-based index of the row.

A RowProperties object representing the specified row.

RowProperties rowProps = ws.GetRowProperties(0);
Dim rowProps As RowProperties = ws.GetRowProperties(0)