[]
Sets a tab-delimited string of unformatted data in a specified range of cells on this sheet.
public void SetClipValue(int row, int column, int rowCount, int columnCount, string value)
Public Sub SetClipValue(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, value As String)
Type | Name | Description |
---|---|---|
int | row | Starting row index or -1 for all rows |
int | column | Starting column index or -1 for all columns |
int | rowCount | Number of rows or -1 for all rows |
int | columnCount | Number of columns or -1 for all columns |
string | value | Tab-delimited string (data only) to set into the specified range of cells |
Type | Condition |
---|---|
ArgumentOutOfRangeException | Specified row index is out of range; must be between 0 and the total number of rows |
ArgumentOutOfRangeException | Specified column index is out of range; must be between 0 and the total number of columns |