Spread WPF 15
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / ResumeCalcService() Method
Example


In This Topic
    ResumeCalcService() Method
    In This Topic
    Resumes the calculation service.
    Syntax
    'Declaration
     
    Public Sub ResumeCalcService() 
    'Usage
     
    Dim instance As Worksheet
     
    instance.ResumeCalcService()
    public void ResumeCalcService()
    Example
    This example uses the ResumeCalcService method.
    gcSpreadSheet1.Sheets[0].SuspendCalcService();
    gcSpreadSheet1.Sheets[0].SuspendSpanModelEvent();
    gcSpreadSheet1.Sheets[0].ResumeCalcService();
    gcSpreadSheet1.Sheets[0].ResumeSpanModelEvent();
    GcSpreadSheet1.Sheets(0).SuspendCalcService()
    GcSpreadSheet1.Sheets(0).SuspendSpanModelEvent()
    GcSpreadSheet1.Sheets(0).ResumeCalcService()
    GcSpreadSheet1.Sheets(0).ResumeSpanModelEvent()
    See Also