MFC

Inherits from Object

Description

A class that provides properties for controlling a Mass Flow Conveyor.

Properties

sections Accesses the mass flow conveyor's sections as MFC.Section objects.

Details

Do no remove, this fixes the anchor on doc.flexsim.com

MFC.sections

readonly sections

Description

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