[]
Gets a tab-delimited string that contains the formatted text in a specified range.
public string GetClip(int row, int column, int rowCount, int columnCount)
Public Function GetClip(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer) 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 |
Type | Description |
---|---|
string | Tab-delimited string containing the formatted data in 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 |
Gets a tab-delimited string that contains the formatted text in a specified range.
public string GetClip(int row, int column, int rowCount, int columnCount, bool unformatted)
Public Function GetClip(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer, unformatted As Boolean) 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 |
bool | unformatted | Specifies data in the clip is unformatted |
Type | Description |
---|---|
string | Tab-delimited string containing the formatted data in 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 |