Gets the total number of items stored in the collection.
Returns the inspection plan item that associated to the the specified entity or undefined
if the collection contains no such inspection plan item. The following associations are assumed:
Entity | Association |
---|---|
Measurement | The part to which the measurement is attached |
MeasurementValue | The characteristic to which the measurement value is attached |
RawDataItem | The part or characteristic to which the raw data is attached |
A measurement, measurement value or raw data item.
Returns the inspection plan item that is identified by the specified path or undefined
if the collection contains no such inspection plan item.
An inspection plan path.
Returns the child items of the specified inspection plan item or. Please be aware that only those children are returned, that are included in the binding of the element.
The item whose children are requested.
Returns the parent item of the specified inspection plan item or undefined
if the item has no parent, or the collection doesn't contain it.
The item whose parent is requested.
Returns the parent part of the specified inspection plan item or undefined
if the item has no parent, or the collection doesn't contain it.
The item whose parent part is requested.
Returns an iterator over all characteristics stored in the collection.
Returns an iterator over all parts stored in the collection.
Returns an iter over all inspection plan items.
Generated using TypeDoc
Describes a set of inspection plan items. It offers a wide range of functions to improve its accessibility. You can iterate over the collection like the following:
const inspectionPlanCollection = piweb.data.getInspectionPlanCollection(); for (let item of inspectionPlanCollection) { ... }