AfterRemove

fires after a file is removed from the queue

void AfterRemove(object file, [string id] );
fileobjectthe file object
idstringoptional, the id of the file

Example

vault.events.on("AfterRemove", function(file){
    console.log(file.id);
});

See also
Back to top