ListView.GetItemRect 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在控件中检索项的边框。
重载
GetItemRect(Int32) |
在列表视图控件中检索特定项的边框。 |
GetItemRect(Int32, ItemBoundsPortion) |
在列表视图控件中检索指定项的边框的指定部分。 |
GetItemRect(Int32)
在列表视图控件中检索特定项的边框。
public:
System::Drawing::Rectangle GetItemRect(int index);
public System.Drawing.Rectangle GetItemRect (int index);
member this.GetItemRect : int -> System.Drawing.Rectangle
Public Function GetItemRect (index As Integer) As Rectangle
参数
- index
- Int32
位于要返回其边框的 ListView.ListViewItemCollection 内的项的从零开始的索引。
返回
Rectangle,表示指定的 ListViewItem 的边框。
注解
此版本的 方法返回的 GetItemRect 边框表示整个项,包括图标、项文本和子项文本。 若要指定项边框的特定部分,请使用 方法的其他版本 GetItemRect 。
另请参阅
适用于
GetItemRect(Int32, ItemBoundsPortion)
在列表视图控件中检索指定项的边框的指定部分。
public:
System::Drawing::Rectangle GetItemRect(int index, System::Windows::Forms::ItemBoundsPortion portion);
public System.Drawing.Rectangle GetItemRect (int index, System.Windows.Forms.ItemBoundsPortion portion);
member this.GetItemRect : int * System.Windows.Forms.ItemBoundsPortion -> System.Drawing.Rectangle
Public Function GetItemRect (index As Integer, portion As ItemBoundsPortion) As Rectangle
参数
- index
- Int32
位于要返回其边框的 ListView.ListViewItemCollection 内的项的从零开始的索引。
- portion
- ItemBoundsPortion
ItemBoundsPortion 值之一,表示要为其检索边框的 ListViewItem 的一部分。
返回
Rectangle,表示指定 ListViewItem 的指定部分的边框。
注解
此版本的 方法返回的 GetItemRect 边框仅表示 参数中指定的 portion
项的节。 若要返回整个项的边框,请使用 方法的另一个 GetItemRect 版本。