Size::*=

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

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

   (Width, height) = (Width * [sz.Width, value], Height * [sz.Height, value])
Parameters
Parameters 
Description 
const Size<T> & sz 
A size whose components multiply those of a current size. 
Return Value

A Size reference to the current string whose components are determined by multiplying its original components with alternate values.