Class InventoryCombinationEventArgs
The event arguments for the inventory combination events. The arguments contain the two combined items.
Inheritance
System.Object
InventoryCombinationEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public class InventoryCombinationEventArgs
Constructors
| Improve this Doc View SourceInventoryCombinationEventArgs(IInventoryItem, IInventoryItem)
Initializes a new instance of the InventoryCombinationEventArgs class.
Declaration
public InventoryCombinationEventArgs(IInventoryItem activeItem, IInventoryItem passiveItem)
Parameters
Type | Name | Description |
---|---|---|
IInventoryItem | activeItem | Active item. |
IInventoryItem | passiveItem | Passive item. |
Properties
| Improve this Doc View SourceActiveItem
Gets the active item for the combination (the item that you are using on the other item).
Declaration
public IInventoryItem ActiveItem { get; }
Property Value
Type | Description |
---|---|
IInventoryItem | The active item. |
PassiveItem
Gets the passive item for the combination (the item that you use the other item on).
Declaration
public IInventoryItem PassiveItem { get; }
Property Value
Type | Description |
---|---|
IInventoryItem | The passive item. |
Methods
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()