Size::/=

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

The operator /= function contracts a size by dividing each of its components by a 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 divide those of a current size. 
T value 
A value that divides both components of a current size. 
Return Value

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