inline Size<T>& Div(const Size<T> & sz); inline Size<T>& Div(T value); inline Size<T>& Div(T w, T h);
Div divides the current size by a fixed value; both of its individual components are divided by a 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 dividing its original components by alternate values.