Class AddonRequestedUpdateArgs
Addon argument data for OnRequestedUpdate events.
Assembly: Dalamud.dll
View Source
Declaration
public class AddonRequestedUpdateArgs : 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; }
NumberArrayData
Gets or sets the NumberArrayData** for this event.
View Source
Declaration
public nint NumberArrayData { get; set; }
StringArrayData
Gets or sets the StringArrayData** for this event.
View Source
Declaration
public nint StringArrayData { get; set; }
Methods
Clone()
Creates a new object that is a copy of the current instance.
View Source
Declaration
public AddonRequestedUpdateArgs Clone()
Returns
Dalamud.Game.Addon.Lifecycle.AddonArgTypes.AddonRequestedUpdateArgs: A new object that is a copy of this instance.
Implements
System.ICloneable