ARCed.Controls.EquipmentChangedEventArgs.EquipmentChangedEventArgs C# (CSharp) 메소드

EquipmentChangedEventArgs() 공개 메소드

Default constructor
public EquipmentChangedEventArgs ( int index, int equipmentId, string propertyName ) : System
index int Index of the item
equipmentId int ID of the item's selected equipment
propertyName string Name of the RPG object property this value represents
리턴 System
        public EquipmentChangedEventArgs(int index, int equipmentId, string propertyName)
        {
            this.Index = index;
            this.EquipmentId = equipmentId;
            this.PropertyName = propertyName;
        }
EquipmentChangedEventArgs