Skip to main content
A newer version of this page is available. .

OptionsTableLayoutGroup.Add(RowDefinition) Method

Adds the specified row to a table layout.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.2.dll

Declaration

public void Add(
    RowDefinition rowDefinition
)

Parameters

Name Type Description
rowDefinition RowDefinition

An object that specifies the row to be added.

Remarks

The Add method adds the specified RowDefinition object to the end of the layout group’s OptionsTableLayoutGroup.RowDefinitions collection. To append a new row with default settings to a table layout, use the OptionsTableLayoutGroup.AddRow method.

You can also add existing rows to the RowDefinitions collection using its RowDefinitions.Add and RowDefinitions.AddRange methods.

See Also