- control
- A child control of the System.Windows.Forms.TableLayoutPanel.
The row position of control, or -1 if the position of control is determined by TableLayoutPanel.LayoutEngine.
If control spans two or more rows, the TableLayoutPanel.GetRow(Control) method will return the lowest row index.
The row position value is zero based, so you can use it as an index for the array returned by TableLayoutPanel.GetRowHeights.
This method is called by the Row property, which the panel adds to its child controls at design time.
To get the actual position of control, even when its position is determined by TableLayoutPanel.LayoutEngine, call the TableLayoutPanel.GetPositionFromControl(Control) method.