Click or drag to resize

DynamicLayoutAddColumn Method

Adds a column of controls in a new vertical section

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

Parameters

controls
Type: Eto.FormsControl
Controls to add
Remarks
This allows you to add columns of controls. If you are in a horizontal section, you can call this method repeatedly to add columns of controls that are sized independently from eachother. This is a shortcut for the following:
layout.BeginVertical();
layout.Add(control1);
...
layout.EndVertical();
See Also