Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / EnsureCalculated(Int32,Int32,Int32,Int32,Boolean) Method
the start row index
the start column index
the end row index
the end column index
true if the UIManager should be notified; otherwise, false.


In This Topic
    EnsureCalculated(Int32,Int32,Int32,Int32,Boolean) Method
    In This Topic
    Ensure that all data in specify range is calculated
    Syntax
    'Declaration
     
    
    Public Function EnsureCalculated( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer, _
       Optional ByVal notifyUI As Boolean _
    ) As Byte
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
    Dim notifyUI As Boolean
    Dim value As Byte
     
    value = instance.EnsureCalculated(row, column, row2, column2, notifyUI)
    public byte EnsureCalculated( 
       int row,
       int column,
       int row2,
       int column2,
       bool notifyUI
    )

    Parameters

    row
    the start row index
    column
    the start column index
    row2
    the end row index
    column2
    the end column index
    notifyUI
    true if the UIManager should be notified; otherwise, false.
    See Also