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
)
Public Function BeginScrollable (
Optional border As BorderType = BorderType.Bezel,
Optional padding As Nullable(Of Padding) = Nothing,
Optional spacing As Nullable(Of Size) = Nothing,
Optional xscale As Nullable(Of Boolean) = Nothing,
Optional yscale As Nullable(Of Boolean) = Nothing
) As DynamicScrollable
member BeginScrollable :
?border : BorderType *
?padding : Nullable<Padding> *
?spacing : Nullable<Size> *
?xscale : Nullable<bool> *
?yscale : Nullable<bool>
(* Defaults:
let _border = defaultArg border BorderType.Bezel
let _padding = defaultArg padding null
let _spacing = defaultArg spacing null
let _xscale = defaultArg xscale null
let _yscale = defaultArg yscale null
*)
-> DynamicScrollable
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:
DynamicScrollableThe scrollable instance.
Remarks See Also