ImageEn, unit iexFolderMView |
|
TImageEnFolderMView.SetSortOrderEx
Declaration
procedure SetSortOrderEx(xSortOrder: TIEImageEnMViewSortBy; bSortAscending: Boolean = True; bSortCaseSensitive: Boolean = False); overload;
procedure SetSortOrderEx(xSortOrder: TIEImageEnMViewSortBy; xSortOptions: TIEMSortOptions); overload;
Description
Specifies both sort options in one step (to avoid premature updating).
It is the same as making the following calls:
LockUpdate
try
SortOrder
SortOptions
finally
UnlockUpdate
end;