Font.op_Inequality(Font,Font) Method (Microsoft.DirectX.Direct3D)

Compares the current instance of a class to another instance to determine whether they are different.

Definition

Visual Basic Public Shared Function op_Inequality( _
    ByVal left As Font, _
    ByVal right As Font _
) As Boolean
C# public static bool op_Inequality(
    Font left,
    Font right
);
C++ public:
static bool operator!=(
    Fontleft,
    Fontright
);
JScript public static function op_Inequality(
    left : Font,
    right : Font
) : boolean;

Parameters

left Microsoft.DirectX.Direct3D.Font
The Font object to the left of the equality operator.
right Microsoft.DirectX.Direct3D.Font
The Font object to the right of the equality operator.

Return Value

System.Boolean
Returns true if the objects are different; otherwise, false.