QUERY.ORDER_GET Function
Syntax
Order_Expression as C = .Order_get()
Description
The .ORDER_GET() method returns the order expression for the query list.
Example
dim tbl as P dim qry as P dim ptr as P tbl = table.open("test") query.filter = "ID <> ''" query.options = "D" qry = tbl.query_create() ? qry.order_get() = "ID"
See Also