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)
1142
Assert.Equal(1, control.
GetRowSpan
(child));
1149
Assert.Throws<ArgumentNullException>("control", () => control.
GetRowSpan
(null));
2012
Assert.Equal(value, control.
GetRowSpan
(child));
2020
Assert.Equal(value, control.
GetRowSpan
(child));
2057
Assert.Equal(value, control.
GetRowSpan
(child));
2067
Assert.Equal(value, control.
GetRowSpan
(child));
2087
Assert.Equal(1, control.
GetRowSpan
(child));
2090
Assert.Equal(2, control.
GetRowSpan
(child));