Click or drag to resize

DynamicLayoutBeginGroup Method

Begins a the group section in the dynamic layout with a title.

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

Parameters

title
Type: SystemString
Title for the group, or null to have no title.
padding (Optional)
Type: SystemNullablePadding
Padding around the children of the group.
spacing (Optional)
Type: SystemNullableSize
Spacing between the children of the group.
xscale (Optional)
Type: SystemNullableBoolean
Xscale of the group itself.
yscale (Optional)
Type: SystemNullableBoolean
Yscale of the group itself.

Return Value

Type: DynamicGroup
The group instance.
Remarks
See Also