Size::!=

Size::!=
inline bool operator !=(const Size<T> & sz) const;
Description

The operator != function determines the inequality of two sizes. The following expression may be used to represent the result:

   (sz1.Width != sz1.Width) && (sz1.Height != sz2.Height)
Parameters
Parameters 
Description 
const Size<T> & sz 
The passed size whose components are compared to those of the first size. 
Return Value

A Boolean value of 1 (true) if the two sizes are not equal and 0 (false) if they are.