Spread WPF 17
GrapeCity.CalcEngine Namespace / CalcEvaluatorContext Class / IsIntersected(CalcIdentity,CalcIdentity) Method
The source identity, intersected this with another one.
The destination identity,


In This Topic
    IsIntersected(CalcIdentity,CalcIdentity) Method
    In This Topic
    Determines whether the specified CalcIdentity is intersected with another one.
    Syntax
    'Declaration
     
    Public Overridable Function IsIntersected( _
       ByVal srcId As CalcIdentity, _
       ByVal destId As CalcIdentity _
    ) As Boolean
    'Usage
     
    Dim instance As CalcEvaluatorContext
    Dim srcId As CalcIdentity
    Dim destId As CalcIdentity
    Dim value As Boolean
     
    value = instance.IsIntersected(srcId, destId)
    public virtual bool IsIntersected( 
       CalcIdentity srcId,
       CalcIdentity destId
    )

    Parameters

    srcId
    The source identity, intersected this with another one.
    destId
    The destination identity,

    Return Value

    true if the specified calc identity is intersected; otherwise, false. By default, compare two by System.Object.ReferenceEquals(System.Object,System.Object).
    See Also