DataGridViewSelectedCellCollection.CopyTo(DataGridViewCell[], Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从指定索引处开始,将集合中的元素复制到指定的 DataGridViewCell 数组。
public:
void CopyTo(cli::array <System::Windows::Forms::DataGridViewCell ^> ^ array, int index);
public void CopyTo (System.Windows.Forms.DataGridViewCell[] array, int index);
override this.CopyTo : System.Windows.Forms.DataGridViewCell[] * int -> unit
Public Sub CopyTo (array As DataGridViewCell(), index As Integer)
参数
- array
- DataGridViewCell[]
DataGridViewCell 类型的一维数组,作为集合中元素的复制目标位置。 该数组的索引必须从零开始。
- index
- Int32
array
中从零开始的索引,从此处开始复制。
例外
array
为 null
。
index
小于零。
DataGridViewCellCollection 无法自动强制转换为 array
类型。