Event type for sorting the list, compare two values of the List
Source position: MUIClass.List.pas line 13
type TCompareEvent = function( |
Sender: TObject; |
Entry1: PChar; |
Entry2: PChar |
):Integer of object; |
Sender |
|
List which should be sorted |
Entry1 |
|
1st Entry to compare |
Entry2 |
|
2nd Entry to compare |
< 0 if Entry2 is bigger than Entry 1; = 0 if Both are the same, > 0 if Entry1 is bigger than Entry2
|
Event to compare two entries for sorting |