{description}
{excerpt}Sets or returns the 0\-based index of the first row that is shown in the worksheet.{excerpt}
{signature:C#}
 public int FirstShownRow{ get; set; }
{signature}{signature:vb.net}
Public Property FirstShownRow() As Integer
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set FirstShownRow
          ws.FirstShownRow = 5;
        {code}
{code:vb.net|title=vb.net}

          '--- Get FirstShownRow
          Dim firstRow As Integer = ws.FirstShownRow

          '--- Set FirstShownRow
          ws.FirstShownRow = 5
        {code}

{example}