Click or drag to resize

DynamicLayoutEndBeginVertical Method

Ends the current vertical section, then begins a new vertical section

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public DynamicTable EndBeginVertical(
	Nullable<Padding> padding = null,
	Nullable<Size> spacing = null,
	Nullable<bool> xscale = null,
	Nullable<bool> yscale = null
)

Parameters

padding (Optional)
Type: SystemNullablePadding
Padding to apply around the vertical section, or null to use the DefaultPadding
spacing (Optional)
Type: SystemNullableSize
Spacing to apply to cells in the vertical section, or null to use the DefaultSpacing
xscale (Optional)
Type: SystemNullableBoolean
Xscale of the vertical section
yscale (Optional)
Type: SystemNullableBoolean
Yscale of the vertical section

Return Value

Type: DynamicTable
A new DynamicTable instance used for the vertical section
Remarks
When finished adding controls to the vertical section, call EndVertical
See Also