Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / FormulaEngine Class / EnterContext Method / EnterContext(IReferenceSource,Int32,Int32,Boolean) Method
The IReferenceSource object which is using formula.
An integer value indicates the context row index.
An integer value indicates the context column index.
if set to true the formula is using A1 reference format. Otherwise, it uses R1C1 reference format.


In This Topic
    EnterContext(IReferenceSource,Int32,Int32,Boolean) Method
    In This Topic
    Enters the specified parsing context.
    Syntax
    'Declaration
     
    
    Public Overloads Sub EnterContext( _
       ByVal source As IReferenceSource, _
       ByVal contextRow As Integer, _
       ByVal contextColumn As Integer, _
       ByVal isA1Reference As Boolean _
    ) 
    'Usage
     
    
    Dim instance As FormulaEngine
    Dim source As IReferenceSource
    Dim contextRow As Integer
    Dim contextColumn As Integer
    Dim isA1Reference As Boolean
     
    instance.EnterContext(source, contextRow, contextColumn, isA1Reference)

    Parameters

    source
    The IReferenceSource object which is using formula.
    contextRow
    An integer value indicates the context row index.
    contextColumn
    An integer value indicates the context column index.
    isA1Reference
    if set to true the formula is using A1 reference format. Otherwise, it uses R1C1 reference format.
    See Also