1 write to RowStyles
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.TableLayoutSettingsStub.cs (1)
69containerInfo.RowStyles = _rowStyles;
12 references to RowStyles
System.Windows.Forms (12)
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
57_rowStyles = containerInfo.RowStyles;
System\Windows\Forms\Layout\TableLayout.cs (10)
623InitializeStrips(containerInfo.Rows, containerInfo.RowStyles); 721(IsAbsolutelySized(layoutInfo.RowStart, containerInfo.RowStyles))) 723int constrainingHeight = (int)containerInfo.RowStyles[layoutInfo.RowStart].Size; 841if (rowSpan > 1 || !IsAbsolutelySized(layoutInfo.RowStart, containerInfo.RowStyles)) 857DistributeSize(containerInfo.RowStyles, containerInfo.Rows, layoutInfo.RowStart, rowStop, minHeight, maxHeight, containerInfo.CellBorderWidth); 861return DistributeStyles(containerInfo.CellBorderWidth, containerInfo.RowStyles, containerInfo.Rows, proposedConstraints.Height, dontHonorConstraint); 1504Debug.Assert(containerInfo.RowStyles.Count >= layoutInfo1.RowStart + layoutInfo1.RowSpan, "length of row style too short"); 1505Debug.Assert(containerInfo.RowStyles.Count >= layoutInfo2.RowStart + layoutInfo2.RowSpan, "length of row style too short"); 1508Debug.Assert(containerInfo.RowStyles[k].SizeType == SizeType.Absolute, $"column {k} is not absolutely sized"); 1513Debug.Assert(containerInfo.RowStyles[k].SizeType == SizeType.Absolute, $"column {k} is not absolutely sized");
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
151return containerInfo.RowStyles;