QUERY.FILTER_GET Function
Syntax
Filter as C = .Filter_get()
Description
The .FILTER_GET() method returns the Filter (a logical expression ) for the query list.
Example
dim tbl as P
dim rec as C
dim nrecs as N
dim qry as P
rec = "11111"
tbl = table.open("test")
query.filter = "rec = left(ID,5)"
qry = tbl.query_create()
? qry.filter_get()
= "11111" = LEFT(ID,5)See Also