Click or drag to resize

DynamicLayoutBeginScrollable Method

Begins a the scrollable section in the dynamic layout with a specified border.

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

Parameters

border (Optional)
Type: Eto.FormsBorderType
BorderType for the Scrollable.
padding (Optional)
Type: SystemNullablePadding
Padding around the children in the scrollable.
spacing (Optional)
Type: SystemNullableSize
Spacing between the children in the scrollable.
xscale (Optional)
Type: SystemNullableBoolean
Xscale of the scrollable itself.
yscale (Optional)
Type: SystemNullableBoolean
Yscale of the scrollable itself.

Return Value

Type: DynamicScrollable
The scrollable instance.
Remarks
See Also