Size::|=

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

The operator |= function determines the union of two sizes by comparing their components respectively. The greater component is chosen. The following expression may be used to represent the result:

   (Width, Height) = (max(Width, sz.Width), max(Height, sz.Height))
Parameters
Parameters 
Description 
const Size<T> & sz 
A size whose components are compared to those of a current size. 
Return Value

A Size reference to the current string whose components represent the union of two sizes.