AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The StoreFilterAAF property is used to determine and specify if the filters set by the user on a Table or TreeView table control are saved when an application is closed and opened again.
This filter is set via the filter buttons in the table columns (right click on the magnifier or funnel icon).
If the filter is saved, the next time the window containing the table is opened, a short message will appear to indicate the filter that is implemented, then the filter will be automatically re-applied.
Storing the filter
Note This property is identical to the "Memorize user filters" option in the "Detail" tab of the Table control description window.
Ejemplo
// Modify CBOX_StoreFilter
IF CBOX_StoreFilter = True THEN
TABLE_PRICE.StoreFilterAAF = True
ELSE
TABLE_PRICE.StoreFilterAAF = False
END
Sintaxis

Finding out whether the filter options are stored Ocultar los detalles

<Result> = <Table control>.StoreFilterAAF
<Result>: Boolean
  • True if the filter options defined by the user on the Table control are stored.
  • False otherwise (default value).
<Table control>: Control name
Name of the Table or TreeView Table control to be used.

Modifiying the management of the filter options Ocultar los detalles

<Table control>.StoreFilterAAF = <Storage>
<Table control>: Control name
Name of the Table or TreeView Table control to be used.
<Storage>: Boolean
  • True to store the filter options defined by the user on the Table control between 2 launches of the application.
  • False otherwise.
Observaciones
The filter information is saved with the other persistent information (for more details, see the help about ).
Versión mínima requerida
  • Versión 17
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local