Sequence.Requirements
- Mise à jour2025-07-21
- Temps de lecture : 1 minute(s)
Sequence.Requirements
Syntax
Sequence.Requirements
Data Type
Purpose
Returns the Requirements property for the sequence. The Links subproperty of the Requirements property is an array of string values that represents the product and unit requirements the sequence covers.
Remarks
You can use the following pseudocode to add a new element to the list of requirements:
PropertyObject links = sequence.Requirements.GetPropertyObject("Links", 0); int nextAvailableIndex = links.GetNumElements(); links.SetValStringByOffset(nextAvailableIndex, PropertyOptions.PropOption_InsertElement, "REQ_ABC");