DynamicLayoutAddSpace Method |
Adds an empty space. Equivalent to calling Add(null);
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public DynamicControl AddSpace(
Nullable<bool> xscale = null,
Nullable<bool> yscale = null
)
Public Function AddSpace (
Optional xscale As Nullable(Of Boolean) = Nothing,
Optional yscale As Nullable(Of Boolean) = Nothing
) As DynamicControl
member AddSpace :
?xscale : Nullable<bool> *
?yscale : Nullable<bool>
(* Defaults:
let _xscale = defaultArg xscale null
let _yscale = defaultArg yscale null
*)
-> DynamicControl
Parameters
- xscale (Optional)
- Type: SystemNullableBoolean
Xscale for this control and any in the same column - yscale (Optional)
- Type: SystemNullableBoolean
Yscale for this control and any in the same row
Return Value
Type:
DynamicControlThe item representing the space.
See Also