Size::ExpandedToHeight

Size::ExpandedToHeight
inline Size<T> ExpandedToHeight(T h) const;
Description

ExpandedToHeight expands (unions) the Height of the current size to a passed value by comparing them. The greater component is chosen. The following expression may be used to represent the result:

   (Width, Height) = (Width, max(Height, h))
Parameters
Parameters 
Description 
T h 
A value that is compared to Height
Return Value

A Size reference to the current string whose Height represent the union of its original Height and a passed value.

See Also