Internet Direct (Indy) Version 9.0.2 Beta
TIdOnGetCustomListFormat
TIdOnGetCustomListFormat = procedure (ASender: TIdFTPServer; AItem: TIdFTPListItem; var VText: string) of object;
Description
TIdOnGetCustomListFormat is an event type signalled when TIdFTPListItems needs to perform custom parsing to prepare a text representation of a directory listing item. TIdOnGetCustomListFormat is the type used to represent the TIdFTPListItems.OnGetCustomListFormat property, and allows the directory listing container to implement a routine used in TIdFTPListItem.Text when TIdFTPListItems.ListFormat contains the TIdFTPListFormat value flfCustom.

AItem is a TIdFTPListItem that provides a container for the raw data for the directory listing item.

VText is the textual value return as a result of the custom parsin routine.

Applications must assign a procedure to an event handler to allow reposnding to the event notification.