ListViewItem.Bounds 属性

定义

获取该项(包括子项)的边框。

public:
 property System::Drawing::Rectangle Bounds { System::Drawing::Rectangle get(); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Rectangle Bounds { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Bounds : System.Drawing.Rectangle
Public ReadOnly Property Bounds As Rectangle

属性值

Rectangle,表示该项的边框。

属性

注解

可以使用此方法获取整个项的边框。 如果要获取整个项的一部分的边框,请使用 GetBounds 方法。 类 ListView 提供了一个 GetItemRect 方法,可用于获取控件中任何项的边框。

返回的边框使用相对于包含 ListBox的当前可见区域的左上角的客户端控件坐标。 ListBox如果 可滚动并定位 ,使 ListViewItem 不可见,则返回的坐标可能是负数。

ListView.View当 属性的值为 List时,边框的宽度是包含该项的列的宽度,而不是项目中文本的宽度。 ListView.Columns如果集合不包含任何列,则使用默认列宽 60 像素。

适用于

另请参阅