diff --git a/xml/System.Windows.Forms/TableLayoutPanel.xml b/xml/System.Windows.Forms/TableLayoutPanel.xml
index b7f4400a63f..ce3794a58a8 100644
--- a/xml/System.Windows.Forms/TableLayoutPanel.xml
+++ b/xml/System.Windows.Forms/TableLayoutPanel.xml
@@ -319,12 +319,16 @@
System.Int32
- Gets or sets the number of columns in the table.
- The number of columns in the control. The default is 0.
+ Gets or sets the maximum number of columns allowed in the table.
+ The maximum number of columns in the control. The default is 0.
property does not create columns or allocate any backing memory. Memory allocation occurs when the columns are created, so you can set this property to .
+
+ Setting this property causes the table to undergo another layout operation.
+
You can specify both the and the properties for layouts with a known and fixed number of cells. You can also specify one property or the other if you expect the number of cells in your layout to grow, assuming that the property allows for such growth. If the value of is 0, the panel will grow by adding rows, and if the value of is 0, the panel will grow by adding columns. Specifying panel growth with the property is preferred to setting or to 0, however.
Controls can be added or deleted from the table using the property.
@@ -1182,12 +1186,16 @@
System.Int32
- Gets or sets the number of rows in the table.
- The number of rows in the control. The default is 0.
+ Gets or sets the maximum number of rows allowed in the table.
+ The maximum number of rows in the control. The default is 0.
property does not create rows or allocate any backing memory. Memory allocation occurs when the rows are created, so you can set this property to .
+
+ Setting this property causes the table to undergo another layout operation.
+
You can specify both the and the properties for layouts with a known and fixed number of cells. You can also specify one property or the other if you expect the number of cells in your layout to grow, assuming that the property allows for such growth. If the value of is 0, the panel will grow by adding rows, and if the value of is 0, the panel will grow by adding columns. Specifying panel growth with the property is preferred to setting or to 0, however.
Controls can be added or deleted from the table using the property.