ListBox.GetItemRectangle(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the bounding rectangle for an item in the ListBox.
public:
System::Drawing::Rectangle GetItemRectangle(int index);
public System.Drawing.Rectangle GetItemRectangle (int index);
member this.GetItemRectangle : int -> System.Drawing.Rectangle
Public Function GetItemRectangle (index As Integer) As Rectangle
Parameters
- index
- Int32
The zero-based index of item whose bounding rectangle you want to return.
Returns
A Rectangle that represents the bounding rectangle for the specified item.
Exceptions
The index
parameter is less than zero or greater than or equal to the value of the Count property of the ListBox.ObjectCollection class.
Remarks
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.