Spread WPF 15
GrapeCity.Windows.SpreadSheet.Data Namespace / Workbook Class / DataCalculated Event


In This Topic
    DataCalculated Event
    In This Topic
    Occurs when all formulas are calculated.
    Syntax
    'Declaration
     
    Public Event DataCalculated As EventHandler
    'Usage
     
    Dim instance As Workbook
    Dim handler As EventHandler
     
    AddHandler instance.DataCalculated, handler
    public event EventHandler DataCalculated
    Remarks
    Rows and cell data are loaded as needed for display when the LoadExcelOnDemand property is true. Use the DataCalculated event to determine when all data has been loaded and calculated. Set the LoadExcelOnDemand property before loading an Excel-formatted file to speed up loading.
    See Also