16 writes to Height
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
495TableLayoutSettings.RowStyles[0].Height = Math.Max(0, DisplayRectangle.Height); 529rowStyle.Height = 100; // this width is ignored in AutoSize.
System\Windows\Forms\Panels\TableLayoutPanel\RowStyle.cs (1)
20Height = height;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
550rs.Height = (float)Math.Round(lastRowHeight * factor.Height); 554rs.Height = (float)Math.Round(rs.Height * factor.Height);
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (4)
664Table.RowStyles[0].Height = DesignerUtils.s_minimumStylePercent; 666Table.RowStyles[1].Height = DesignerUtils.s_minimumStylePercent; 1996Table.RowStyles[index].Height = rh[index]; 2008Table.RowStyles[index].Height = DesignerUtils.s_minimumStylePercent;
System.Windows.Forms.Tests (7)
System\Windows\Forms\RowStyleTests.cs (7)
53Height = value 58style.Height = value; 80style.Height = value; 86style.Height = value; 117style.Height = value; 126style.Height = value; 139Assert.Throws<ArgumentOutOfRangeException>("value", () => style.Height = -1);
19 references to Height
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
554rs.Height = (float)Math.Round(rs.Height * factor.Height);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
115rowStyles.Append($"{rowStyle.SizeType},{rowStyle.Height},");
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\StyleEditorForm.cs (1)
590sizeValue = FormatValueString(rowStyle.SizeType, rowStyle.Height);
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
112Assert.Equal(100F, rowStyle.Height);
System.Windows.Forms.Tests (15)
SerializableTypesTests.cs (2)
321Assert.Equal(20, result.RowStyles[0].Height); 322Assert.Equal(30, result.RowStyles[1].Height);
System\Windows\Forms\Layout\TableLayoutSettingsTests.cs (2)
1798Assert.Equal(rowStyle.Height, ((RowStyle)Assert.Single(result.RowStyles)).Height);
System\Windows\Forms\Layout\TableLayoutSettingsTypeConverterTests.cs (2)
61Assert.Equal(1, settings.RowStyles[0].Height); 63Assert.Equal(2, settings.RowStyles[1].Height);
System\Windows\Forms\RowStyleTests.cs (9)
13Assert.Equal(0, style.Height); 23Assert.Equal(0, style.Height); 36Assert.Equal(width, style.Height); 55Assert.Equal(value, style.Height); 59Assert.Equal(value, style.Height); 81Assert.Equal(value, style.Height); 87Assert.Equal(value, style.Height); 118Assert.Equal(value, style.Height); 127Assert.Equal(value, style.Height);