Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Reference Structure / Xor Method
first Reference
second Reference


In This Topic
    Xor Method
    In This Topic
    Computes the difference of two Reference. Difference of two Reference can produce a maximum of four Reference.If the two Reference do not intersect a zero-length array is returned.
    Syntax
    'Declaration
     
    
    Public Shared Function Xor( _
       ByVal rectA As Reference, _
       ByVal rectB As Reference _
    ) As Reference()
    'Usage
     
    
    Dim rectA As Reference
    Dim rectB As Reference
    Dim value() As Reference
     
    value = Reference.Xor(rectA, rectB)
    public static Reference[] Xor( 
       Reference rectA,
       Reference rectB
    )

    Parameters

    rectA
    first Reference
    rectB
    second Reference

    Return Value

    non-null array of References, with length zero to four
    See Also