Storage.Item.State
Description
A class that enumerates the storage item states.
Static Properties
Inbound | Storage item Inbound state. |
Outbound | Storage item Outbound state. |
Stored | Storage item Stored state. |
Unassigned | Storage item Unassigned state. |
Details
Do no remove, this fixes the anchor on doc.flexsim.com
Storage.Item.State.Inbound
static readonly int Inbound
Description
Storage item Inbound state.
The assignedSlot property is set to a valid slot, but the currentSlot property is null. In other words, the item has been assigned to a slot, but has not yet arrived in the slot.Do no remove, this fixes the anchor on doc.flexsim.com
Storage.Item.State.Outbound
static readonly int Outbound
Description
Storage item Outbound state.
The currentSlot property refers to a valid slot, but the assignedSlot property refers to different slot or null. In other words, the item has been stored in a slot, and has been reassigned, either to a different slot, or to null (it is about to exit the system).Do no remove, this fixes the anchor on doc.flexsim.com
Storage.Item.State.Stored
static readonly int Stored
Description
Storage item Stored state.
The assignedSlot and currentSlot properties are both set to the same slot. In other words, the item has been stored in a slot, and has not been assigned to any other slot.Do no remove, this fixes the anchor on doc.flexsim.com
Storage.Item.State.Unassigned
static readonly int Unassigned
Description
Storage item Unassigned state.
Both the assignedSlot and currentSlot properties are null. In other words, the item is neither assigned to nor stored in a slot.