ListBox::GetItemRectangle Method (Int32)
.NET Framework (current version)
Returns the bounding rectangle for an item in the ListBox.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- index
-
Type:
System::Int32
The zero-based index of item whose bounding rectangle you want to return.
Return Value
Type: System.Drawing::RectangleA Rectangle that represents the bounding rectangle for the specified item.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The index parameter is less than zero or greater than or equal to the value of the Count property of the ListBox::ObjectCollection class. |
If the item specified in the index parameter is not visible, the rectangle returned by this method will be outside the visible portion of the control. You can use this method to determine the size and position of an item within the list. To get the height of an item, especially a variable-height owner drawn list item, you can use the GetItemHeight method.
.NET Framework
Available since 1.1
Available since 1.1
Show: