Skip to main content

Class AddonRefreshArgs

Addon argument data for Refresh events.

Assembly: Dalamud.dll
Declaration
public class AddonRefreshArgs : AddonArgs

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

Properties

Type

Gets the type of these args.

Declaration
public override AddonArgsType Type { get; }

AtkValueCount

Gets or sets the number of AtkValues.

Declaration
public uint AtkValueCount { get; set; }

AtkValues

Gets or sets the address of the AtkValue array.

Declaration
public nint AtkValues { get; set; }

AtkValueSpan

Gets the AtkValues in the form of a span.

Declaration
[Obsolete("Pending removal, Use AtkValueEnumerable instead.")]
public Span<AtkValue> AtkValueSpan { get; }

AtkValueEnumerable

Gets an enumerable collection of Dalamud.Game.NativeWrapper.AtkValuePtr of the event's AtkValues.

Declaration
public IEnumerable<AtkValuePtr> AtkValueEnumerable { get; }