int cmpv(const Value& row1, const Value& row2) { if (pureValue (String(row1)) > pureValue (String(row2))) return 0; else return 1; }
ExampleTable.ColumnAt(2).Sorting(cmpv);
ExampleTable.ColumnAt(2).Sorting(FnValueOrder(cmpv));
Report message to a moderator