ToolStripComboBox.IntegralHeight Property

Definition

Gets or sets a value indicating whether the ToolStripComboBox 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 ToolStripComboBox based on the space requirements of your form, set this property to false. If the ToolStripComboBox does not contain any items, this property has no effect.

Setting the DropDownHeight property resets the IntegralHeight property to false.

Applies to