2 writes to RowSpan
System.Windows.Forms (2)
System\Windows\Forms\Layout\TableLayout.LayoutInfo.cs (1)
51
RowSpan
= RowSpan,
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
304
TableLayout.GetLayoutInfo(element).
RowSpan
= value;
24 references to RowSpan
System.Windows.Forms (24)
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (2)
258
_minRowsAndColumns += layoutInfo.
RowSpan
* layoutInfo.ColumnSpan;
262
_minRows = Math.Max(_minRows, layoutInfo.RowPosition + layoutInfo.
RowSpan
);
System\Windows\Forms\Layout\TableLayout.cs (16)
371
rowStop = Math.Min(currentRow + flowElement.
RowSpan
, maxRows);
437
rowStop = Math.Min(fixedElement.RowStart + fixedElement.
RowSpan
, maxRows);
543
for (int rowOffset = fixedLayoutInfo.RowPosition - currentRow; rowOffset < fixedLayoutInfo.RowPosition - currentRow + fixedLayoutInfo.
RowSpan
; rowOffset++)
639
if (layoutInfo.
RowSpan
> 1)
720
if ((columnSpan == 1 && layoutInfo.
RowSpan
== 1) &&
838
int rowSpan = layoutInfo.
RowSpan
;
856
int rowStop = Math.Min(layoutInfo.RowStart + layoutInfo.
RowSpan
, containerInfo.Rows.Length);
1244
int rowStop = currentRow + layoutInfo.
RowSpan
;
1316
layoutInfo.RowStart <= row && (layoutInfo.RowStart + layoutInfo.
RowSpan
- 1) >= row)
1411
minSpace += layoutInfo.
RowSpan
* layoutInfo.ColumnSpan;
1476
Rectangle cellsOccupied1 = new(layoutInfo1.ColumnStart, layoutInfo1.RowStart, layoutInfo1.ColumnSpan, layoutInfo1.
RowSpan
);
1481
Rectangle cellsOccupied2 = new(layoutInfo2.ColumnStart, layoutInfo2.RowStart, layoutInfo2.ColumnSpan, layoutInfo2.
RowSpan
);
1504
Debug.Assert(containerInfo.RowStyles.Count >= layoutInfo1.RowStart + layoutInfo1.
RowSpan
, "length of row style too short");
1505
Debug.Assert(containerInfo.RowStyles.Count >= layoutInfo2.RowStart + layoutInfo2.
RowSpan
, "length of row style too short");
1506
for (k = layoutInfo1.RowStart; k < layoutInfo1.RowStart + layoutInfo1.
RowSpan
; k++)
1511
for (k = layoutInfo2.RowStart; k < layoutInfo2.RowStart + layoutInfo2.
RowSpan
; k++)
System\Windows\Forms\Layout\TableLayout.LayoutInfo.cs (4)
51
RowSpan =
RowSpan
,
61
&& other.
RowSpan
==
RowSpan
71
hash.Add(
RowSpan
);
System\Windows\Forms\Layout\TableLayout.RowSpanComparer.cs (1)
10
public override int GetSpan(LayoutInfo layoutInfo) => layoutInfo.
RowSpan
;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
283
return TableLayout.GetLayoutInfo(element).
RowSpan
;