Sets or returns the 0-based index of the first row that is shown in the worksheet.

<p> public int FirstShownRow{ get; set; }</p>
<p>Public Property FirstShownRow() As Integer</p>

          //--- Get FirstShownRow
          int firstRow = ws.FirstShownRow;

          //--- Set FirstShownRow
          ws.FirstShownRow = 5;
        
          '--- Get FirstShownRow
          Dim firstRow As Integer = ws.FirstShownRow

          '--- Set FirstShownRow
          ws.FirstShownRow = 5