A class that provides properties for controlling a Mass Flow Conveyor Decision Point.
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. |
readonly int content
Gets the content at the decision point.
Gets the content at the decision point.
int count = dp.content;
readonly int contentAfter
Gets the section's content after the decision point.
Includes content at the decision point.
int count = dp.contentAfter;
readonly int contentBefore
Gets the section's content before the decision point.
Does not include content at the decision point.
int count = dp.contentBefore;
readonly int totalContentAfter
Gets the mass flow coneyor's content after the decision point.
Includes content at the decision point.
int totalCount = dp.totalContentAfter;
readonly int totalContentBefore
Gets the mass flow coneyor's content before the decision point.
Does not include content at the decision point.
int totalCount = dp.totalContentBefore;