1 write to RowStyles
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.TableLayoutSettingsStub.cs (1)
69
containerInfo.
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)
623
InitializeStrips(containerInfo.Rows, containerInfo.
RowStyles
);
721
(IsAbsolutelySized(layoutInfo.RowStart, containerInfo.
RowStyles
)))
723
int constrainingHeight = (int)containerInfo.
RowStyles
[layoutInfo.RowStart].Size;
841
if (rowSpan > 1 || !IsAbsolutelySized(layoutInfo.RowStart, containerInfo.
RowStyles
))
857
DistributeSize(containerInfo.
RowStyles
, containerInfo.Rows, layoutInfo.RowStart, rowStop, minHeight, maxHeight, containerInfo.CellBorderWidth);
861
return DistributeStyles(containerInfo.CellBorderWidth, containerInfo.
RowStyles
, containerInfo.Rows, proposedConstraints.Height, dontHonorConstraint);
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");
1508
Debug.Assert(containerInfo.
RowStyles
[k].SizeType == SizeType.Absolute, $"column {k} is not absolutely sized");
1513
Debug.Assert(containerInfo.
RowStyles
[k].SizeType == SizeType.Absolute, $"column {k} is not absolutely sized");
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
151
return containerInfo.
RowStyles
;