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

In This Topic
    Greater Than or Equal Operator (Variant)
    In This Topic
    Checks whether the one variant is greater or equal to 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 comparison operator.
    b
    The Variant to be to the right of the comparison operator.

    Return Value

    True if the 'a' is greater or equal to 'b', False otherwise.
    See Also