Size::*

Size::*
inline const Size<T> operator *(const Size<T> & sz) const;
inline const Size<T> operator *(int value) const;
Description

The operator * function multiplies each of its components by a fixed value. The following expression may be used to represent the result:

   (result.Width, result.height) = (sz1.Width * [sz2.Width, value], sz1.Height * [sz2.Height, value])
Parameters
Parameters 
Description 
const Size<T> & sz 
A value that multiplies both components of a passed size. 
int value 
The passed sizes whose components multiply those of the first size respectively. 
Return Value

A new Size whose components are determined by multiplying the components of a passed size with alternate values.