LayoutIPositionalLayoutHandlerAdd Method |
Adds the control to the layout given the specified co-ordinates
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void Add(
Control control,
int x,
int y
)
Sub Add (
control As Control,
x As Integer,
y As Integer
)
abstract Add :
control : Control *
x : int *
y : int -> unit
Parameters
- control
- Type: Eto.FormsControl
Child control to add to this layout - x
- Type: SystemInt32
X co-ordinate - y
- Type: SystemInt32
Y co-ordinate
Remarks
Adding a control typically will make it visible to the user immediately, assuming they can see the control
in the current co-ordinates, and that the control's
Visible property is true
See Also