TableCellCollection.RemoveRange(Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除由起始索引和计数指定的项范围。
public:
void RemoveRange(int index, int count);
public void RemoveRange (int index, int count);
member this.RemoveRange : int * int -> unit
Public Sub RemoveRange (index As Integer, count As Integer)
参数
- index
- Int32
从零开始的索引,指示要移除的一系列项的起始位置。
- count
- Int32
从 index
所指定位置开始移除的项数。
例外
当 index
或 count
小于零,或 index
大于等于 Count 时引发。
当 index
和 count
未指定此集合中的有效范围时引发。
注解
可以调整剩余集合项的索引以反映已删除的集合项。