CompositeCriterionDefinition

No details are provided for this entry.

Declaration Syntax

public class CompositeCriterionDefinition : IList<CompositeCriterionTerm>, ICollection<CompositeCriterionTerm>, IEnumerable<CompositeCriterionTerm>, IEnumerable

Table 177: Members

Property

Count

Gives the number of CompositeCriterionTerms in the definition.

Property

Item

No details are provided for this entry.

Method

Add(CompositeCriterionTerm)

Adds a CompositeCriterionTerm at the end in the definition. Usage: CriterionDefinition.Add(Ansys.ACT.Automation.Mechanical.CompositeCriterionTerm(primCritObj, 1.3))

Method

Clear()

Clears all the CompositeCriterionTerms in the definition.

Method

IndexOf(CompositeCriterionTerm)

Gives the index where the specified CompositeCriterionTerm exists in the definition. Returns -1 if the term is not found in the definition.

Method

Insert(int, CompositeCriterionTerm)

Inserts a CompositeCriterionTerm at a specified index in the definition. Returns IndexOutOfRangeException for invalid index. Usage: CriterionDefinition.Insert(1, Ansys.ACT.Automation.Mechanical.CompositeCriterionTerm(primCritObj, 1.3))

Method

RemoveAt(int)

Removes the CompositeCriterionTerm at a specified index in the definition. Returns IndexOutOfRangeException for invalid index.