ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.ExpressionInfo Assembly / GrapeCity.Enterprise.Data.Expressions.Evaluation Namespace / Variant Structure / Less 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
    Less Than or Equal Operator (Variant)
    In This Topic
    Checks whether the one variant is less 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 less or equal to 'b', False otherwise.
    See Also