Icon TLayoutStretch

Unit: WebUI

TLayoutStretch = (lsNone,lsTopLeft,lsTop,lsTopRight,lsLeft,
      lsRight, lsBottomLeft,lsBottom,lsBottomRight)

Available In: Client and Server Applications

The TLayoutStretch enumerated type is used with the TLayout class to specify how a UI element or control is stretched to fill parts of the layout rectangle.

ElementDescription
lsBottomSpecifies that the element or control will stretch to the bottom of the layout rectangle.
lsBottomLeftSpecifies that the element or control will stretch to the bottom-left corner of the layout rectangle.
lsBottomRightSpecifies that the element or control will stretch to the bottom-right corner of the layout rectangle.
lsLeftSpecifies that the element or control will stretch to the left side of the layout rectangle.
lsNoneSpecifies that the element or control will not be stretched. This is the default value.
lsRightSpecifies that the element or control will stretch to the right side of the layout rectangle.
lsTopSpecifies that the element or control will stretch to the top of the layout rectangle.
lsTopLeftSpecifies that the element or control will stretch to the top-left corner of the layout rectangle.
lsTopRightSpecifies that the element or control will stretch to the top-right corner of the layout rectangle.
Image