[]
Copies one or more rows or columns and pastes them at the specified location.
public virtual void Copy(int fromIndex, int toIndex, int count)
Public Overridable Sub Copy(fromIndex As Integer, toIndex As Integer, count As Integer)
Type | Name | Description |
---|---|---|
int | fromIndex | Row or column index at which to start copying rows or columns |
int | toIndex | Row or column index at which to paste rows or columns |
int | count | Number of rows or columns to copy |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified start index is not valid; must be between 0 and the total count |
IndexOutOfRangeException | Specified destination index is not valid; must be between 0 and the total count |
ArgumentException | Specified count is not valid; must be between 1 and the total count |