Size::=

Size::=
inline const Size<T>& operator =(const Size<T> & sz);
inline const Size<T>& operator =(T value);
inline const Size<T>& operator =(BoundsType bt);
Description

The operator = function assigns values to each component of a current size. The following expression may be used to represent the result:

   (Width, Height) = ([value, w], [value, h])
Parameters
Parameters 
Description 
const Size<T> & sz 
A size whose components set those of the current size. 
T value 
A value that sets both components of a current size. 
BoundsType bt 
An enum value that initializes the size to either the Min or Max .If the passed value is Min, (Height, Width) are set to (0, 0).