TableRowCollection.CopyTo メソッド
定義
コレクションの内容をコピーして、指定された配列の指定されたインデックス位置から挿入します。Copies the contents of the collection and inserts them into a specified array starting at a specified index position in the array.
オーバーロード
CopyTo(Array, Int32) |
コレクションの内容をコピーして、指定された配列の指定されたインデックス位置から挿入します。Copies the contents of the collection and inserts them into a specified array starting at a specified index position in the array. |
CopyTo(TableRow[], Int32) |
コレクションの内容をコピーして、指定された TableRow 配列の指定されたインデックス位置から挿入します。Copies the contents of the collection and inserts them into a specified TableRow array of starting at a specified index position in the array. |
CopyTo(Array, Int32)
コレクションの内容をコピーして、指定された配列の指定されたインデックス位置から挿入します。Copies the contents of the collection and inserts them into a specified array starting at a specified index position in the array.
public:
virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)
パラメーター
- array
- Array
コレクションの内容のコピー先となる 1 次元配列。A one-dimensional array to which the collection contents will be copied. この配列では、0 から始まるインデックスを使用する必要があります。This array must use zero-based indexing.
- index
- Int32
コピーしたコレクション オブジェクトの挿入を開始する位置を指定する array
内の 0 から始まるインデックス。A zero-based index in array
specifying the position at which to begin inserting the copied collection objects.
実装
例外
array に TableRow 型と互換性のない項目が含まれている場合、または arrayIndex が array の範囲外にある位置を指定している場合に発生します。Raised when array includes items that are not compatible with the type TableRow, or if arrayIndex specifies a position that falls outside of the bounds of array.
array が null の場合に発生します。Raised when array is null.
arrayIndex が 0 未満の場合に発生します。Raised when arrayIndex is less than 0.
適用対象
CopyTo(TableRow[], Int32)
public:
virtual void CopyTo(cli::array <System::Windows::Documents::TableRow ^> ^ array, int index);
public void CopyTo (System.Windows.Documents.TableRow[] array, int index);
abstract member CopyTo : System.Windows.Documents.TableRow[] * int -> unit
override this.CopyTo : System.Windows.Documents.TableRow[] * int -> unit
Public Sub CopyTo (array As TableRow(), index As Integer)
パラメーター
- array
- TableRow[]
コレクションの内容のコピー先となる TableRow の 1 次元配列。A one-dimensional TableRow array to which the collection contents will be copied. この配列では、0 から始まるインデックスを使用する必要があります。This array must use zero-based indexing.
- index
- Int32
コピーしたコレクション オブジェクトの挿入を開始する位置を指定する array
内の 0 から始まるインデックス。A zero-based index in array
specifying the position at which to begin inserting the copied collection objects.
実装
例外
array に TableRow 型と互換性のない項目が含まれている場合、または arrayIndex が array の範囲外にある位置を指定している場合に発生します。Raised when array includes items that are not compatible with the type TableRow, or if arrayIndex specifies a position that falls outside of the bounds of array.
array が null の場合に発生します。Raised when array is null.
arrayIndex が 0 未満の場合に発生します。Raised when arrayIndex is less than 0.