Editor for WinForms | ComponentOne
C1.Win.C1Editor.4.5.2 Assembly / C1.Win.C1Editor Namespace / C1TextPointer Class / Inequality Operator
The first text pointer to compare.
The second text pointer to compare.

In This Topic
    Inequality Operator
    In This Topic
    The inequality operator (!=) returns False if its operands of C1TextPointer type are equal; otherwise, it returns True.
    Syntax
    'Declaration
     
    Public Operator <>( _
       ByVal markupPointer1 As C1TextPointer, _
       ByVal markupPointer2 As C1TextPointer _
    ) As System.Boolean
    public System.bool operator !=( 
       C1TextPointer markupPointer1,
       C1TextPointer markupPointer2
    )

    Parameters

    markupPointer1
    The first text pointer to compare.
    markupPointer2
    The second text pointer to compare.

    Return Value

    Returns True if two specified objects of C1TextPointer type are not equal; otherwise, it returns False.
    See Also