11 writes to Height
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
504
TableLayoutSettings.RowStyles[0].
Height
= Math.Max(0, DisplayRectangle.Height);
538
rowStyle.
Height
= 100; // this width is ignored in AutoSize.
System\Windows\Forms\Panels\TableLayoutPanel\RowStyle.cs (1)
20
Height
= height;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
550
rs.
Height
= (float)Math.Round(lastRowHeight * factor.Height);
554
rs.
Height
= (float)Math.Round(rs.Height * factor.Height);
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\StyleEditorForm.cs (2)
911
_tableLayoutPanel.RowStyles[index].
Height
= value;
1004
_tableLayoutPanel.RowStyles[i].
Height
= (_tableLayoutPanel.RowStyles[i].Height * 100) / total;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (4)
661
Table.RowStyles[0].
Height
= DesignerUtils.s_minimumStylePercent;
663
Table.RowStyles[1].
Height
= DesignerUtils.s_minimumStylePercent;
1974
Table.RowStyles[index].
Height
= rh[index];
1986
Table.RowStyles[index].
Height
= DesignerUtils.s_minimumStylePercent;
8 references to Height
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
554
rs.Height = (float)Math.Round(rs.
Height
* factor.Height);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
115
rowStyles.Append($"{rowStyle.SizeType},{rowStyle.
Height
},");
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\StyleEditorForm.cs (6)
590
sizeValue = FormatValueString(rowStyle.SizeType, rowStyle.
Height
);
663
UpdateGroupBox(_tableLayoutPanel.RowStyles[index].SizeType, _tableLayoutPanel.RowStyles[index].
Height
);
680
value = _isRowCollection ? _tableLayoutPanel.RowStyles[index].
Height
: _tableLayoutPanel.ColumnStyles[index].Width;
690
if (value != (_isRowCollection ? _tableLayoutPanel.RowStyles[index].
Height
: _tableLayoutPanel.ColumnStyles[index].Width))
976
total += _tableLayoutPanel.RowStyles[i].
Height
;
1004
_tableLayoutPanel.RowStyles[i].Height = (_tableLayoutPanel.RowStyles[i].
Height
* 100) / total;