sType | (String) Type of selected values in the table:
"Row" - One row of the table is selected. The index value must be an integer:
- index>=0 means the index of the selected row (zero-based index).
- index=-2 means the last row. "Col" - One column of the table is selected. The index value must be of the String type or of the Integer type:
- If it is of the String type, then it is the column name.
- If it is of the Integer type, then:
- index>=0 means the index of the selected column (zero-based index),
- index=-2 means the last column. |
---|---|
index | (Variant) Index into the table whose meaning is defined by the sType parameter |
var oDataTable = pMe.Pm("/DataTable");
var sString = oDataTable.SaveToString("Row", -2);