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

In This Topic
    Greater Than Operator
    In This Topic
    Checks to see whether this text pointer's position is to the right of another text pointer's position.
    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

    True if the first pointer is to the right of the second pointer, otherwise false.
    See Also