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 formulas or their calculated values will be displayed in the worksheet. Calculated values are displayed by default.{excerpt}
{signature:C#}
 public boolean ShowFormulas{ get; set; }
{signature}{signature:vb.net}
Public Property ShowFormulas() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Get ShowFormulas
          bool displayFormulas = ws.ShowFormulas;

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

          '--- Get ShowFormulas
          Dim displayFormulas As Boolean = ws.ShowFormulas

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

{example}