TableLayoutPanel::SetRowSpan Method (Control^, Int32)

 

Sets the number of rows spanned by the child control.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void SetRowSpan(
	Control^ control,
	int value
)

Parameters

control
Type: System.Windows.Forms::Control^

A child control of the TableLayoutPanel.

value
Type: System::Int32

The number of rows to span.

Exception Condition
ArgumentOutOfRangeException

value is less than 1.

Row spanning is often useful for positioning a control that is considerably taller than its peers.

This method is called by the RowSpan property, which the panel adds to its child controls at design time.

The following code example uses the GetRowSpan and SetRowSpan methods to set the width of a Button control in a TableLayoutPanel.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: