Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns whether formulas or their calculated values will be displayed in the worksheet. Calculated values are displayed by default.
C#
<p> public boolean ShowFormulas{ get; set; }</p>
vb.net
<p>Public Property ShowFormulas() As Boolean</p>

Examples

C#
//--- Get ShowFormulas
bool displayFormulas = ws.ShowFormulas;
 
//--- Set ShowFormulas
ws.ShowFormulas = true;
vb.net
'--- Get ShowFormulas
Dim displayFormulas As Boolean = ws.ShowFormulas
 
'--- Set ShowFormulas
ws.ShowFormulas = True

  • No labels