12 references to GetRowSpan
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
203
Debug.Assert(
GetRowSpan
(control) == value, "GetRowSpan should be the same as we set it");
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (3)
734
int rowSpan = Table.
GetRowSpan
(newControl);
1738
int span = isRow ? Table.
GetRowSpan
(child) : Table.GetColumnSpan(child); // span is always at least 1
1827
int span = isRow ? Table.
GetRowSpan
(child) : Table.GetColumnSpan(child); // span is always at least 1
System.Windows.Forms.Tests (8)
System\Windows\Forms\TableLayoutPanelTests.cs (8)
1144
Assert.Equal(1, control.
GetRowSpan
(child));
1151
Assert.Throws<ArgumentNullException>("control", () => control.
GetRowSpan
(null));
2014
Assert.Equal(value, control.
GetRowSpan
(child));
2022
Assert.Equal(value, control.
GetRowSpan
(child));
2059
Assert.Equal(value, control.
GetRowSpan
(child));
2069
Assert.Equal(value, control.
GetRowSpan
(child));
2089
Assert.Equal(1, control.
GetRowSpan
(child));
2092
Assert.Equal(2, control.
GetRowSpan
(child));