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 zero values in cells will be displayed in the worksheet. Zero values are displayed by default.

{signature}
{example}{code:csharp|title=C#}

          //--- Get ShowZeroValues
          bool showZeroes = ws.ShowZeroValues;

          //--- Set ShowZeroValues
          ws.ShowZeroValues = true;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get ShowZeroValues
          Dim showZeros As Boolean = ws.ShowZeroValues

          '--- Set ShowZeroValues
          ws.ShowZeroValues = True
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns whether zero values in cells will be displayed in the worksheet. Zero values are displayed by default.{excerpt}
{signature:C#}
 public boolean ShowZeroValues{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property ShowZeroValues() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle