|
|
|
|
|
FilterCondition (Property) In french: ConditionFiltre
Not available with this kind of connection
The FilterCondition property gets the selection condition set by HFilter on a data file, HFSQL view or query.
// Enable filter HFilter(Customer, CustomerName, "D" + hMinVal, "F" + hMaxVal, "City='Paris'") // Insert your process here Trace(Customer.MaxValue) Trace(Customer.MinValue) Trace(Customer.FilterCondition) // Specifies "City=Paris" // Disable filter HDeactivateFilter(Customer)
Syntax
<Selection condition> = <Element used>.FilterCondition
<Selection condition>: Character string - Condition specified with HFilter,
- Empty string ("") if no filter is enabled or if no selection condition was specified.
This selection condition can be an Ansi or Unicode character string.
<Element used>: Character string Name of the HFSQL data file, query or view on which the filter was defined.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|