ResourceList Event
Fired for each resource listed.
Syntax
type TResourceListEvent = procedure ResourceList(Sender: TObject; const Path: String; const Name: String; const Id: String; const ModifiedDate: String; const Revision: String; Size: Int64; ResourceType: Integer) of object;property OnResourceList: TResourceListEvent read FOnResourceList write FOnResourceList;
Remarks
This event fires with information about each resource listed when calling ListResources, GetResourceInfo, and Search.
Path is the absolute path to the resource.
Name is the name of the resource.
Id is the Id of the resource.
ModifiedDate is the modified date of the resource.
Revision is the revision of the file.
Size is the size of the file in bytes.
ResourceType indicates whether the resource is a file or folder. Possible value are:
0 | File |
1 | Folder |