Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xml/System.Windows.Forms/TableLayoutSettings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
Setting the <xref:System.Windows.Forms.TableLayoutSettings.ColumnCount%2A> property does not allocate the columns or any backing memory. This allocation occurs when the columns are created.
Setting the <xref:System.Windows.Forms.TableLayoutSettings.ColumnCount%2A> 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 <xref:System.Int32.MaxValue>.

Setting this property causes the table to undergo another layout operation.

Expand Down Expand Up @@ -434,7 +434,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
Setting the <xref:System.Windows.Forms.TableLayoutSettings.RowCount%2A> property does not allocate the rows or any backing memory. This allocation occurs when the rows are created.
Setting the <xref:System.Windows.Forms.TableLayoutSettings.RowCount%2A> 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 <xref:System.Int32.MaxValue>.

Setting this property causes the table to undergo another layout operation.

Expand Down