1 write to RowSpan
System.Windows.Forms (1)
winforms\Managed\System\WinForms\TableLayoutSettings.cs (1)
295
TableLayout.GetLayoutInfo(element).
RowSpan
= value;
19 references to RowSpan
System.Windows.Forms (19)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (18)
442
rowStop = Math.Min(currentRow + flowElement.
RowSpan
, maxRows);
497
rowStop = Math.Min(fixedElement.RowStart + fixedElement.
RowSpan
, maxRows);
586
for (int rowOffset = fixedLayoutInfo.RowPosition - currentRow; rowOffset < fixedLayoutInfo.RowPosition - currentRow + fixedLayoutInfo.
RowSpan
; rowOffset++) {
660
if (layoutInfo.
RowSpan
> 1) {
728
if ((columnSpan == 1 && layoutInfo.
RowSpan
== 1) &&
831
int rowSpan = layoutInfo.
RowSpan
;
848
int rowStop = Math.Min(layoutInfo.RowStart + layoutInfo.
RowSpan
, containerInfo.Rows.Length);
1209
int rowStop = currentRow + layoutInfo.
RowSpan
;
1276
layoutInfo.RowStart <= row && (layoutInfo.RowStart + layoutInfo.
RowSpan
- 1) >= row) {
1692
_minRowsAndColumns += layoutInfo.
RowSpan
* layoutInfo.ColumnSpan;
1695
_minRows = Math.Max(_minRows, layoutInfo.RowPosition + layoutInfo.
RowSpan
);
1851
return layoutInfo.
RowSpan
;
2084
Rectangle cellsOccupied1 = new Rectangle(layoutInfo1.ColumnStart, layoutInfo1.RowStart, layoutInfo1.ColumnSpan, layoutInfo1.
RowSpan
);
2088
Rectangle cellsOccupied2 = new Rectangle(layoutInfo2.ColumnStart, layoutInfo2.RowStart, layoutInfo2.ColumnSpan, layoutInfo2.
RowSpan
);
2106
Debug.Assert(containerInfo.RowStyles.Count >= layoutInfo1.RowStart + layoutInfo1.
RowSpan
, "length of row style too short");
2107
Debug.Assert(containerInfo.RowStyles.Count >= layoutInfo2.RowStart + layoutInfo2.
RowSpan
, "length of row style too short");
2108
for (k = layoutInfo1.RowStart; k < layoutInfo1.RowStart + layoutInfo1.
RowSpan
; k++) {
2111
for (k = layoutInfo2.RowStart; k < layoutInfo2.RowStart + layoutInfo2.
RowSpan
; k++) {
winforms\Managed\System\WinForms\TableLayoutSettings.cs (1)
273
return TableLayout.GetLayoutInfo(element).
RowSpan
;