Size::SetSize

Size::SetSize
inline void SetSize(T val);
inline void SetSize(T w, T h);
inline void SetSize(const Size<T> & sz);
Description

SetSize sets the components of the current size. The following expression may be used to represent the result:

   (Width, Height) = ([val, w, sz.Width], [val, h, sz.Height])
Parameters
Parameters 
Description 
T val 
A value that sets both Width and Height
T w 
A value that sets Width
T h 
A value that sets Height
const Size<T> & sz 
A size whose components set those of the current size.