IsValid determines whether the size is valid. In order to be considered valid, both of the components must be greater than or equal to zero. The following expression may be used to represent the result:
(Width >= 1) && (Height >= 0)
A Boolean value of 1 (true) if the size is valid and 0 (false) if it is not.