ListViewGroupCollection.Insert(Int32, ListViewGroup) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 ListViewGroup 插入集合中的指定索引处。
public:
void Insert(int index, System::Windows::Forms::ListViewGroup ^ group);
public void Insert (int index, System.Windows.Forms.ListViewGroup group);
member this.Insert : int * System.Windows.Forms.ListViewGroup -> unit
Public Sub Insert (index As Integer, group As ListViewGroup)
参数
- index
- Int32
集合中要插入该组的索引位置。
- group
- ListViewGroup
要插入到集合中的 ListViewGroup。
例外
分配给 ListView 此集合的值为虚拟模式。
注解
使用此方法可在集合中的特定索引处插入现有 ListViewGroup 索引。
不能多次向集合添加 a ListViewGroup 。 使用集合中已有的组调用 Insert 该方法时,插入操作会失败。 Contains在插入前使用该方法来确定特定组是否已在集合中。 若要重新定位集合中的组,必须先将其删除,然后将其插入到所需的索引处。