Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public Property Hidden() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle