Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns whether or not the column 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#}

          bool hideCol = colProps.Hidden;
          colProps.Hidden = false;
        {code}
{code:vb.net|title=vb.net}

          Dim hideCol As Boolean = colProps.Hidden
          colProps.Hidden = False
        {code}

{example}