Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Description

Excerpt

Sets or returns whether or not the column will be hidden when the workbook is opened in Excel.

Signature
C#
C#
public boolean Hidden{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Hidden() As Boolean
{signature}
{example}{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#
          
bool hideCol = colProps.Hidden;
          colProps.Hidden = false;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}
          
Dim hideCol As Boolean = colProps.Hidden
          colProps.Hidden = False
        
{code} {example}