|
|
|
|
|
The StoreSortAAF property is used to determine and specify if the sorting defined by the user on a Table or TreeView Table control is kept when an application is closed and opened again. This order is defined via the sort buttons in the table columns. If the sorting order is kept, it will be automatically re-applied next time the window that contains the table is opened,. Note This property is identical to the "Memorize user sorting" option in the "Detail" tab of the Table control description window.
IF CBOX_StoreSort = True THEN
TABLE_PRICE.StoreSortAAF = True
ELSE
TABLE_PRICE.StoreSortAAF = False
END
Sintaxis
Finding out whether the sort options are stored Ocultar los detalles
<Result> = <Table used>.StoreSortAAF
<Result>: Boolean - True if the sort options defined by the user on the Table control are stored.
- False otherwise (default value).
<Table used>: Control name Name of the Table or TreeView Table control to be used.
Modifying the management of the sort options Ocultar los detalles
<Table used>.StoreSortAAF = <Storage>
<Table used>: Control name Name of the Table or TreeView Table control to be used. <Storage>: Boolean - True to remember the sort options defined by the user on the Table control between 2 launches of the application.
- False otherwise.
Observaciones The sort information is saved with the other persistent information (for more details, see the help about SaveParameter).
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|