ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.ExpressionInfo Assembly / GrapeCity.Enterprise.Data.Expressions.Evaluation Namespace / Variant Structure / Left-shift Operator
The variant to be shifted.
The shift value.

In This Topic
    Left-shift Operator
    In This Topic
    Bitwise shift to the left.
    Syntax
    'Declaration
     
    Public Operator <<( _
       ByVal a As Variant, _
       ByVal shift As Integer _
    ) As Variant
    public Variant operator <<( 
       Variant a,
       int shift
    )

    Parameters

    a
    The variant to be shifted.
    shift
    The shift value.

    Return Value

    The result of bitwise shifting.
    Exceptions
    ExceptionDescription
    Thrown if the Variant is of a non-numeric, non-boolean type that does not support bitwise operations, such as TimeSpan, Date, or Object.
    See Also