Skip to main content

Class AddonEventHandle

Class that represents a addon event handle.

Assembly: Dalamud.dll
View Source
Declaration
public class AddonEventHandle : IAddonEventHandle

Implements:
Dalamud.Game.Addon.Events.IAddonEventHandle

Properties

ParamKey

Gets the param key associated with this event.

View Source
Declaration
public uint ParamKey { get; init; }

AddonName

Gets the name of the addon that this event was attached to.

View Source
Declaration
public string AddonName { get; init; }

EventType

Gets the event type associated with this handle.

View Source
Declaration
public AddonEventType EventType { get; init; }

EventGuid

Gets the unique ID for this handle.

View Source
Declaration
public Guid EventGuid { get; init; }

Implements