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.
Visual Basic Public Shared Function op_Inequality( _
ByVal left As Font, _
ByVal right As Font _
) As BooleanC# public static bool op_Inequality(
Font left,
Font right
);C++ public:
static bool operator!=(
Font^ left,
Font^ right
);JScript public static function op_Inequality(
left : Font,
right : Font
) : boolean;
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.
System.Boolean
Returns true if the objects are different; otherwise, false.
Show: