Sets the node and its expression to
CalcGraph under specified
CalcEvaluatorContext.
Syntax
'Declaration
Public Sub SetNode( _
ByVal As CalcLocalIdentity, _
ByVal As CalcExpression, _
ByVal As CalcEvaluatorContext, _
ByVal As ICalcSource, _
ByVal As Boolean, _
Optional ByVal As Boolean _
)
'Usage
Dim instance As CalcGraph
Dim id As CalcLocalIdentity
Dim expr As CalcExpression
Dim evalContext As CalcEvaluatorContext
Dim source As ICalcSource
Dim isArrayFormula As Boolean
Dim checkIntersectantNode As Boolean
instance.SetNode(id, expr, evalContext, source, isArrayFormula, checkIntersectantNode)
Parameters
- id
- A CalcLocalIdentity indicates the position.
- expr
- A GrapeCity.CalcEngine.Expressions.CalcExpression indicates the expression to position at .
- evalContext
- The evaluator context.
- source
- The source.
- isArrayFormula
- Indicates that the expression is a array formula or not.
- checkIntersectantNode
- Indicates that check the intersectant node or not.
See Also