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