NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ComboBox.GetItemHeight

Returns the height of the given item in an OwnerDrawVariable style combo box. This method should not be used for Normal or OwnerDrawFixed style combo boxes.

[Visual Basic]
Public Function GetItemHeight( _
   ByVal index As Integer _
) As Integer
[C#]
public int GetItemHeight(
   int index
);
[C++]
public: int GetItemHeight(
   int index
);
[JScript]
public function GetItemHeight(
   index : int
) : int;

Parameters

index
Item to return the height of.

Return Value

The height, in pixels, of the specified item.

See Also

ComboBox Class | ComboBox Members | System.WinForms Namespace