Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void ValuesToText(DewString &Text, const DewString &Delimiter = kTab); | Converts all calling matrix elements to string. |
| 2 | void ValuesToText(DewString &Text, int Row, int Col, int RowCount, int ColCount, const DewString &Delimiter = kTab); | Converts Row..Col to Row+RowCount..Col+ColCount matrix elements to string. |
Overload 1: void ValuesToText(DewString &Text, const DewString &Delimiter = kTab);
Converts all calling matrix elements to string.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Text | DewString & | |
| 2 | Delimiter = kTab | const DewString & |
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler
Overload 2: void ValuesToText(DewString &Text, int Row, int Col, int RowCount, int ColCount, const DewString &Delimiter = kTab);
Converts Row..Col to Row+RowCount..Col+ColCount matrix elements to string.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Text | DewString & | |
| 2 | Row | int | |
| 3 | Col | int | |
| 4 | RowCount | int | |
| 5 | ColCount | int | |
| 6 | Delimiter = kTab | const DewString & |
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler