onElementDestroy

Event Server and Client icon-iii.png icon-vc.png icon-sa.png icon-iv.png Online and Offline Cancellable

Available since Server 1.0.0, Client 1.0.0

onElementDestroy(Event event, Element element)

The onElementDestroy event is invoked when an element is destroyed.

Parameters

1) Event event The event object for this event.
2) Element element The element that has been destroyed.

Attributes

cancellable This event can be cancelled, by using event.preventDefault.

Notes

There aren't any notes for this event.

Examples

Example 1 - JavaScript:

addEventHandler('OnElementDestroy', (event, element) => {
    message(`Element with id ${element.id} has been destroyed.`, COLOUR_RED)
});


Example 2 - Lua:

addEventHandler('OnElementDestroy', function(event, element)
    message('Element with id ' .. element.id .. ' has been destroyed.', COLOUR_RED)
end)

Compatibility

There isn't any compatibility information for this event.

Related

Server Related

        OnElementDestroy
        OnElementStreamIn
        OnElementStreamOut


Client Related

        OnElementDestroy
        OnElementStreamIn
        OnElementStreamOut