VintaSoft Twain .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging Namespace / Resolution Structure / Equality(Resolution,Resolution) Operator
Syntax Requirements SeeAlso
In This Topic
    Equality(Resolution,Resolution) Operator (Resolution)
    In This Topic
    Compares two Resolution structures. The result specifies whether the values of the Horizontal and Vertical properties of the two Resolution structures are equal.
    Syntax
    'Declaration
    
    Public Operator =( _
    ByVal left
    A Resolution to compare.
    As Resolution, _
    ByVal right
    A Resolution to compare.
    As Resolution _
    ) As Boolean
    public bool operator ==(
    Resolution left,
    Resolution right
    )
    public: bool op_Equality(
    Resolution left,
    Resolution right
    )
    public:
    bool operator ==(
    Resolution left,
    Resolution right
    )

    Parameters

    left
    A Resolution to compare.
    right
    A Resolution to compare.

    Return Value

    true if the Horizontal and Vertical values of left and right are equal; otherwise, false.
    Requirements

    Target Platforms: .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also