Click or drag to resize

DynamicLayoutAddSeparateColumn Method (Control)

Adds a separate vertical column of items in a new vertical section

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public DynamicTable AddSeparateColumn(
	params Control[] controls
)

Parameters

controls
Type: Eto.FormsControl
Controls to add initially

Return Value

Type: DynamicTable
The table added to contain the items
Remarks
This performs the same as the following, but in a single line:
layout.BeginVertical();
layout.Add(control1);
layout.Add(control2);
...
layout.EndVertical();
See Also