Skip to main content

Class AddonSetupArgs

Addon argument data for Setup events.

Assembly: Dalamud.dll
View Source
Declaration
public class AddonSetupArgs : AddonArgs, ICloneable

Inheritance: System.Object -> Dalamud.Game.Addon.Lifecycle.AddonArgTypes.AddonArgs

Implements:
System.ICloneable

Properties

Type

Gets the type of these args.

View Source
Declaration
public override AddonArgsType Type { get; }

AtkValueCount

Gets or sets the number of AtkValues.

View Source
Declaration
public uint AtkValueCount { get; set; }

AtkValues

Gets or sets the address of the AtkValue array.

View Source
Declaration
public nint AtkValues { get; set; }

AtkValueSpan

Gets the AtkValues in the form of a span.

View Source
Declaration
public Span<AtkValue> AtkValueSpan { get; }

Methods

Clone()

Creates a new object that is a copy of the current instance.

View Source
Declaration
public AddonSetupArgs Clone()
Returns

Dalamud.Game.Addon.Lifecycle.AddonArgTypes.AddonSetupArgs: A new object that is a copy of this instance.

Implements

  • System.ICloneable