ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
FilterCondition (Property)
In french: ConditionFiltre
ODBCNot available with this kind of connection
The FilterCondition property allows you to know the selection condition set by HFilter on a data file, HFSQL view or query.
Example
// 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 by 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.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help