ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.ExpressionInfo Assembly / GrapeCity.Enterprise.Data.Expressions.Evaluation Namespace / Variant Structure / Greater Than Operator
The Variant to be to the left of the 'greater' operator.
The Variant to be to the right of the 'greater' operator.

In This Topic
    Greater Than Operator (Variant)
    In This Topic
    Checks whether the one variant is greater than another.
    Syntax
    'Declaration
     
    Public Operator >( _
       ByVal a As Variant, _
       ByVal b As Variant _
    ) As Boolean
    public bool operator >( 
       Variant a,
       Variant b
    )

    Parameters

    a
    The Variant to be to the left of the 'greater' operator.
    b
    The Variant to be to the right of the 'greater' operator.

    Return Value

    True if the 'a' is greater than 'b', False otherwise.
    See Also