Inherits from Object
A class that provides properties for controlling a Mass Flow Conveyor.
sections | Accesses the mass flow conveyor's sections as MFC.Section objects. |
readonly sections
Accesses the mass flow conveyor's sections as MFC.Section objects.
Accessing the Number of Sections
You can access the number of sections on the MFC with the following code:
mfc.sections.length
Accessing Sections by Rank
You can access an individual section by rank with the following code:
mfc.sections[1] // first section
mfc.sections[mfc.sections.length] // last section
mfc.sections[i] // i-th section