16 writes to Height
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
503TableLayoutSettings.RowStyles[0].Height = Math.Max(0, DisplayRectangle.Height); 537rowStyle.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; 1989Table.RowStyles[index].Height = rh[index]; 2001Table.RowStyles[index].Height = DesignerUtils.s_minimumStylePercent;
System.Windows.Forms.Tests (7)
System\Windows\Forms\RowStyleTests.cs (7)
55Height = value 60style.Height = value; 82style.Height = value; 88style.Height = value; 119style.Height = value; 128style.Height = value; 141Assert.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)
114Assert.Equal(100F, rowStyle.Height);
System.Windows.Forms.Tests (15)
SerializableTypesTests.cs (2)
323Assert.Equal(20, result.RowStyles[0].Height); 324Assert.Equal(30, result.RowStyles[1].Height);
System\Windows\Forms\Layout\TableLayoutSettingsTests.cs (2)
1800Assert.Equal(rowStyle.Height, ((RowStyle)Assert.Single(result.RowStyles)).Height);
System\Windows\Forms\Layout\TableLayoutSettingsTypeConverterTests.cs (2)
63Assert.Equal(1, settings.RowStyles[0].Height); 65Assert.Equal(2, settings.RowStyles[1].Height);
System\Windows\Forms\RowStyleTests.cs (9)
15Assert.Equal(0, style.Height); 25Assert.Equal(0, style.Height); 38Assert.Equal(width, style.Height); 57Assert.Equal(value, style.Height); 61Assert.Equal(value, style.Height); 83Assert.Equal(value, style.Height); 89Assert.Equal(value, style.Height); 120Assert.Equal(value, style.Height); 129Assert.Equal(value, style.Height);