Eto.Forms.TableLayout.Move C# (CSharp) Method

Move() public method

Move the specified control to a new location.
If a control already exists in the new location, it will be replaced. Only one control can exist in a cell. The old location of the control will have an empty space.
public Move ( Control control, Point location ) : void
control Control Control to move.
location Point New location of the control.
return void
		public void Move(Control control, Point location)
		{
			Move(control, location.X, location.Y);
		}

Same methods

TableLayout::Move ( Control control, int x, int y ) : void