Size::Mul

Size::Mul
inline Size<T>& Mul(const Size<T> & sz);
inline Size<T>& Mul(T value);
inline Size<T>& Mul(T w, T h);
Description

Mul multiplies the current size by a fixed value. The following expression may be used to represent the result:

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

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