ComboBox.IntegralHeight Property

Definition

Gets or sets a value indicating whether the control should resize to avoid showing partial items.

public:
 property bool IntegralHeight { bool get(); void set(bool value); };
public bool IntegralHeight { get; set; }
member this.IntegralHeight : bool with get, set
Public Property IntegralHeight As Boolean

Property Value

true if the list portion can contain only complete items; otherwise, false. The default is true.

Remarks

When this property is set to true, the control automatically resizes to ensure that an item is not partially displayed. If you want to maintain the original size of the ComboBox based on the space requirements of your form, set this property to false. If the ComboBox does not contain any items, this property has no effect.

Setting the DropDownHeight property resets the IntegralHeight property to false.

Note

If the DrawMode property is set to OwnerDrawVariable, this property has no effect.

Applies to