CSize::operator !=

Checks for inequality between two sizes.

BOOL operator!=( 
   SIZE size  
) const throw( );

Remarks

Returns nonzero if the sizes are not equal, otherwise 0.

Example

CSize sz1(222, 222);
CSize sz2(111, 111);

ASSERT(sz1 != sz2);   

Requirements

Header: atltypes.h

See Also

Reference

CSize Class

Hierarchy Chart

CSize::operator ==