{description}
{excerpt}Sets or returns whether or not the row will be hidden when the workbook is opened in Excel.{excerpt}
{signature:C#}
 public boolean Hidden{ get; set; }
{signature}{signature:vb.net}
Public Property Hidden() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Get Hidden
          bool hideRow = rowProps.Hidden;

          //--- Set Hidden
          rowProps.Hidden = false;
        {code}
{code:vb.net|title=vb.net}

          '--- Get Hidden
          Dim hideRow As Boolean = rowProps.Hidden

          '--- Set Hidden
          rowProps.Hidden = False
        {code}

{example}