|
|
|
|
|
StoreFilterAAF (Property)
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. Note This property is identical to the "Memorize user filters" option in the "Detail" tab of the Table control description window. // 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 ).
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|