'Declaration
Public Overloads Function Calculate( _ ByVal fullCalculation As Boolean, _ Optional ByVal notifyUI As Boolean _ ) As Boolean
'Usage
Dim instance As Worksheet Dim fullCalculation As Boolean Dim notifyUI As Boolean Dim value As Boolean value = instance.Calculate(fullCalculation, notifyUI)
public bool Calculate( bool fullCalculation, bool notifyUI )
Parameters
- fullCalculation
true
if all cells are re-calculated; otherwise, only non-calculated cells are re-calculated.- notifyUI
true
if the control must be notified; otherwise,false
.
Return Value
true
if there is atleast one changed cell, false
otherwise.