DynamicLayoutEndBeginHorizontal Method |
Ends the current horizontal section, then begins a new horizontal section with a new row
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public DynamicRow EndBeginHorizontal(
Nullable<bool> yscale = null
)
Public Function EndBeginHorizontal (
Optional yscale As Nullable(Of Boolean) = Nothing
) As DynamicRow
member EndBeginHorizontal :
?yscale : Nullable<bool>
(* Defaults:
let _yscale = defaultArg yscale null
*)
-> DynamicRow
Parameters
- yscale (Optional)
- Type: SystemNullableBoolean
Yscale of the horizontal section
Return Value
Type:
DynamicRowA new DynamicRow instance used to hold the horizontal controls
Remarks
When finished adding controls to the vertical section, call
EndHorizontalSee Also