MFC.DecisionPoint
Description
A class that provides properties for controlling a Mass Flow Conveyor Decision Point.
Properties
content | Gets the content at the decision point. |
contentAfter | Gets the section's content after the decision point. |
contentBefore | Gets the section's content before the decision point. |
totalContentAfter | Gets the mass flow coneyor's content after the decision point. |
totalContentBefore | Gets the mass flow coneyor's content before the decision point. |
Details
Do no remove, this fixes the anchor on doc.flexsim.com
MFC.DecisionPoint.content
readonly int content
Description
Gets the content at the decision point.
Gets the content at the decision point.
int count = dp.content;
Do no remove, this fixes the anchor on doc.flexsim.com
MFC.DecisionPoint.contentAfter
readonly int contentAfter
Description
Gets the section's content after the decision point.
Includes content at the decision point.
int count = dp.contentAfter;
Do no remove, this fixes the anchor on doc.flexsim.com
MFC.DecisionPoint.contentBefore
readonly int contentBefore
Description
Gets the section's content before the decision point.
Does not include content at the decision point.
int count = dp.contentBefore;
Do no remove, this fixes the anchor on doc.flexsim.com
MFC.DecisionPoint.totalContentAfter
readonly int totalContentAfter
Description
Gets the mass flow coneyor's content after the decision point.
Includes content at the decision point.
int totalCount = dp.totalContentAfter;
Do no remove, this fixes the anchor on doc.flexsim.com
MFC.DecisionPoint.totalContentBefore
readonly int totalContentBefore
Description
Gets the mass flow coneyor's content before the decision point.
Does not include content at the decision point.
int totalCount = dp.totalContentBefore;