inline Size<T>& Mul(const Size<T> & sz); inline Size<T>& Mul(T value); inline Size<T>& Mul(T w, T h);
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])
A Size reference to the current string whose components are determined by multiplying its original components with alternate values.