[]
Sets a tab-delimited string that contains the unformatted text in a specified range.
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 (may create new rows as needed) |
int | columnCount | Number of columns, or -1 for all columns (may create new columns as needed) |
string | value | Tab-delimited string to set into the range |
Type | Condition |
---|---|
ArgumentOutOfRangeException | Specified row is out of range; index must be between -1 (for all) and the number of rows |
ArgumentOutOfRangeException | Specified column is out of range; index must be between -1 (for all) and the number of columns |