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
)
Public Function AddSeparateColumn (
ParamArray controls As Control()
) As DynamicTable
member AddSeparateColumn :
controls : Control[] -> DynamicTable
Parameters
- controls
- Type: Eto.FormsControl
Controls to add initially
Return Value
Type:
DynamicTableThe 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