25 references to Height
System.Windows.Forms (15)
System\Windows\Forms\BoundsSpecified.cs (1)
43
Size = Width |
Height
,
System\Windows\Forms\Control.cs (3)
2245
set => SetBounds(_x, _y, _width, value, BoundsSpecified.
Height
);
5420
if ((_controlStyle & ControlStyles.FixedHeight) != ControlStyles.FixedHeight && (specified & BoundsSpecified.
Height
) != 0)
10108
if ((specified & BoundsSpecified.
Height
) == BoundsSpecified.None)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
3246
if ((specified & BoundsSpecified.
Height
) != BoundsSpecified.None && DropDownStyle == ComboBoxStyle.Simple)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
27458
if ((specified & BoundsSpecified.
Height
) == BoundsSpecified.
Height
&& height > UpperSize)
System\Windows\Forms\Controls\Labels\Label.cs (1)
1379
if ((specified & BoundsSpecified.
Height
) != BoundsSpecified.None)
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
1015
if ((specified & BoundsSpecified.
Height
) != BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5249
_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.Width | BoundsSpecified.
Height
));
5267
if ((specified & BoundsSpecified.
Height
) != 0)
5290
if ((specified & BoundsSpecified.
Height
) != 0 || _restoreBounds.Height == -1)
System\Windows\Forms\Layout\CommonProperties.cs (1)
293
bool hChangedButNotSpecified = ((specified & BoundsSpecified.
Height
) == BoundsSpecified.None) & height != originalBounds.Height;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
2064
if ((specified & BoundsSpecified.
Height
) != BoundsSpecified.None && Orientation == Orientation.Horizontal)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
486
specified &= ~BoundsSpecified.
Height
;
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (4)
680
specified |= BoundsSpecified.
Height
;
696
specified |= BoundsSpecified.
Height
;
770
if (((specified & BoundsSpecified.
Height
) == BoundsSpecified.
Height
) &&
System\Windows\Forms\Design\ComponentTray.cs (2)
2397
(specified & BoundsSpecified.
Height
) == BoundsSpecified.
Height
)
System\Windows\Forms\Design\DataGridViewColumnTypeEditor.Picker.cs (2)
66
if ((BoundsSpecified.
Height
& specified) == BoundsSpecified.
Height
)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
1666
if ((specified & BoundsSpecified.
Height
) == BoundsSpecified.
Height
)