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 |