DynamicRow Constructor (IEnumerableControl, NullableBoolean, NullableBoolean) |
Initializes a new instance of the
DynamicRow class.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public DynamicRow(
IEnumerable<Control> controls,
Nullable<bool> xscale = null,
Nullable<bool> yscale = null
)
Public Sub New (
controls As IEnumerable(Of Control),
Optional xscale As Nullable(Of Boolean) = Nothing,
Optional yscale As Nullable(Of Boolean) = Nothing
)
new :
controls : IEnumerable<Control> *
?xscale : Nullable<bool> *
?yscale : Nullable<bool>
(* Defaults:
let _xscale = defaultArg xscale null
let _yscale = defaultArg yscale null
*)
-> DynamicRow
Parameters
- controls
- Type: System.Collections.GenericIEnumerableControl
Items to initialize the row - xscale (Optional)
- Type: SystemNullableBoolean
Xscale. - yscale (Optional)
- Type: SystemNullableBoolean
Yscale.
See Also