ListBox.GetItemRectangle(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回 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
参数
- index
- Int32
要返回其边框的项的从零开始的索引。
返回
Rectangle,表示指定项的边框。
例外
index
参数或者小于零,或者大于或等于 Count 类的 ListBox.ObjectCollection 属性的值。
注解
如果 参数中指定的 index
项不可见,则此方法返回的矩形将位于控件的可见部分之外。 可以使用此方法来确定列表中项的大小和位置。 若要获取项的高度,尤其是可变高度所有者绘制的列表项,可以使用 GetItemHeight 方法。