Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridRowLayoutStretch Enum

Enumerates data row layout stretch modes.

#Declaration

Delphi
TcxGridRowLayoutStretch = (
    fsNone,
    fsHorizontal,
    fsVertical,
    fsClient
);

#Members

Name Description Example
fsNone

A layout displays editors as is.

Unstretched Layout

fsHorizontal

Editors are stretched horizontally to fit to the available width.

Horizontally Stretched Layout

fsVertical

Editors are stretched vertically to fit to the available height.

Vertically Stretched Layout

fsClient

Editors are stretched vertically and horizontally to occupy an entire layout.

Horizontally and Vertically Stretched Layout

#Remarks

A grid Table View’s LayoutRow.DefaultStretch property has the TcxGridRowLayoutStretch type.

See Also