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 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.
Ejemplo
// Modify CBOX_StoreSort
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).
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