Add the control with the optional scaling
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public DynamicControl Add(
Control control,
Nullable<bool> xscale = null,
Nullable<bool> yscale = null
)
Public Function Add (
control As Control,
Optional xscale As Nullable(Of Boolean) = Nothing,
Optional yscale As Nullable(Of Boolean) = Nothing
) As DynamicControl
member Add :
control : Control *
?xscale : Nullable<bool> *
?yscale : Nullable<bool>
(* Defaults:
let _xscale = defaultArg xscale null
let _yscale = defaultArg yscale null
*)
-> DynamicControl
Parameters
- control
- Type: Eto.FormsControl
Control to add, or null to add blank space - 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:
DynamicControl[Missing <returns> documentation for "M:Eto.Forms.DynamicLayout.Add(Eto.Forms.Control,System.Nullable{System.Boolean},System.Nullable{System.Boolean})"]
Remarks See Also