Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure ValuesToText(out Text: string; Row: Integer; Col: Integer; RowCount: Integer; ColCount: Integer; Delimiter: string); | Converts Row..Col to Row+RowCount..Col+ColCount matrix elements to string. |
| 2 | procedure ValuesToText(out Text: string; Delimiter: string); | Converts all calling matrix elements to string. |
Overload 1: procedure ValuesToText(out Text: string; Row: Integer; Col: Integer; RowCount: Integer; ColCount: Integer; Delimiter: string);
Converts Row..Col to Row+RowCount..Col+ColCount matrix elements to string.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Text | string | |
| 2 | Row | Integer | |
| 3 | Col | Integer | |
| 4 | RowCount | Integer | |
| 5 | ColCount | Integer | |
| 6 | Delimiter | string |
Result: stored in self (calling object)
Overload 2: procedure ValuesToText(out Text: string; Delimiter: string);
Converts all calling matrix elements to string.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Text | string | |
| 2 | Delimiter | string |
Result: stored in self (calling object)