TableLayoutPanel::GetRow Method (Control^)
Returns the row position of the specified child control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- control
-
Type:
System.Windows.Forms::Control^
A child control of the TableLayoutPanel.
Return Value
Type: System::Int32The row position of control, or -1 if the position of control is determined by LayoutEngine.
| Exception | Condition |
|---|---|
| ArgumentNullException | control is null. |
| NotSupportedException | control is not a type that can be arranged by this System.Windows.Forms.Layout::LayoutEngine. |
If control spans two or more rows, the GetRow 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 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 LayoutEngine, call the GetPositionFromControl method.
The following code example enumerates all the child controls in the TableLayoutPanel and finds the row index for each using the GetRow method.
Available since 2.0