ComboBox.GetItemHeight(Int32) 方法

定义

返回 ComboBox 中某项的高度。

public:
 int GetItemHeight(int index);
public int GetItemHeight (int index);
member this.GetItemHeight : int -> int
Public Function GetItemHeight (index As Integer) As Integer

参数

index
Int32

要返回其高度的项的索引。

返回

在指定索引处的项的高度(以像素为单位)。

例外

index 小于零。

- 或 -

index 大于列表中项的计数。

注解

如果未 DrawMode 设置为 OwnerDrawVariable,则忽略 参数的值, index 因为标准 ComboBox 中的所有项的大小相同。 使用所有者绘制 ComboBox 来确定 中任何项的大小时, ComboBox可以使用此属性。

有关指定所有者绘制列表中项的高度的详细信息,请参阅 MeasureItem event。

适用于