ListBox.ItemHeight Property

Definition

Gets or sets the height of an item in the ListBox.

public:
 virtual property int ItemHeight { int get(); void set(int value); };
public virtual int ItemHeight { get; set; }
member this.ItemHeight : int with get, set
Public Overridable Property ItemHeight As Integer

Property Value

The height, in pixels, of an item in the control.

Exceptions

The ItemHeight property was set to less than 0 or more than 255 pixels.

Remarks

When the DrawMode property is set to DrawMode.OwnerDrawFixed, all items have the same height. When the DrawMode property is set to DrawMode.OwnerDrawVariable, the ItemHeight property specifies the height of each item added to the ListBox. Because each item in an owner-drawn list can have a different height, you can use the GetItemHeight method to get the height of a specific item in the ListBox. If you use the ItemHeight property on a ListBox with items of variable height, this property returns the height of the first item in the control.

The maximum height of a ListBox item is 255 pixels.

Applies to

See also