Skip to main content
Version: 14.x (API 14) [Current]

Enum AgentEvent

Enumeration for available AgentLifecycle events.

Assembly: Dalamud.dll
Declaration
public enum AgentEvent

Fields

PreReceiveEvent

An event that is fired before the agent processes its Receive Event Function.

Declaration
PreReceiveEvent = 0

PostReceiveEvent

An event that is fired after the agent has processed its Receive Event Function.

Declaration
PostReceiveEvent = 1

PreReceiveEventWithResult

An event that is fired before the agent processes its Filtered Receive Event Function.

Declaration
PreReceiveEventWithResult = 2

PostReceiveEventWithResult

An event that is fired after the agent has processed its Filtered Receive Event Function.

Declaration
PostReceiveEventWithResult = 3

PreShow

An event that is fired before the agent processes its Show Function.

Declaration
PreShow = 4

PostShow

An event that is fired after the agent has processed its Show Function.

Declaration
PostShow = 5

PreHide

An event that is fired before the agent processes its Hide Function.

Declaration
PreHide = 6

PostHide

An event that is fired after the agent has processed its Hide Function.

Declaration
PostHide = 7

PreUpdate

An event that is fired before the agent processes its Update Function.

Declaration
PreUpdate = 8

PostUpdate

An event that is fired after the agent has processed its Update Function.

Declaration
PostUpdate = 9

PreGameEvent

An event that is fired before the agent processes its Game Event Function.

Declaration
PreGameEvent = 10

PostGameEvent

An event that is fired after the agent has processed its Game Event Function.

Declaration
PostGameEvent = 11

PreLevelChange

An event that is fired before the agent processes its Game Event Function.

Declaration
PreLevelChange = 12

PostLevelChange

An event that is fired after the agent has processed its Level Change Function.

Declaration
PostLevelChange = 13

PreClassJobChange

An event that is fired before the agent processes its ClassJob Change Function.

Declaration
PreClassJobChange = 14

PostClassJobChange

An event that is fired after the agent has processed its ClassJob Change Function.

Declaration
PostClassJobChange = 15

Extension Methods