DynamicRowAdd Method (IEnumerableControl, NullableBoolean, NullableBoolean) |
Add the controls to the row, with specified xscale and yscale.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void Add(
IEnumerable<Control> controls,
Nullable<bool> xscale = null,
Nullable<bool> yscale = null
)
Public Sub Add (
controls As IEnumerable(Of Control),
Optional xscale As Nullable(Of Boolean) = Nothing,
Optional yscale As Nullable(Of Boolean) = Nothing
)
member Add :
controls : IEnumerable<Control> *
?xscale : Nullable<bool> *
?yscale : Nullable<bool>
(* Defaults:
let _xscale = defaultArg xscale null
let _yscale = defaultArg yscale null
*)
-> unit
Parameters
- controls
- Type: System.Collections.GenericIEnumerableControl
Controls to add - xscale (Optional)
- Type: SystemNullableBoolean
Horizontal scale for each control - yscale (Optional)
- Type: SystemNullableBoolean
Vertical scale for each control
See Also