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
)
Public Function BeginGroup (
title As String,
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 DynamicGroup
member BeginGroup :
title : string *
?padding : Nullable<Padding> *
?spacing : Nullable<Size> *
?xscale : Nullable<bool> *
?yscale : Nullable<bool>
(* Defaults:
let _padding = defaultArg padding null
let _spacing = defaultArg spacing null
let _xscale = defaultArg xscale null
let _yscale = defaultArg yscale null
*)
-> DynamicGroup
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:
DynamicGroupThe group instance.
Remarks
Should be balanced with a call to
EndGroup.
See Also