NamedSelectionCriteria#

class ansys.mechanical.stubs.v242.Ansys.ACT.Automation.Mechanical.NamedSelectionCriteria#

Bases: object

A collection of named selection criteria.

Overview#

Add

Adds the given criterion to the collection.

Clear

Clears the collection.

Contains

Returns whether the collection contains the given criterion.

IndexOf

Returns the index of the given criterion if it exists in the collection. Returns -1 if it does not

Insert

Inserts the given criterion into the collection at the given index.

Remove

Removes the given criterion from the collection if it exists in the collection. Throws an exception if it does not.

RemoveAt

Removes the criterion at the given index. Throws an exception if the given index is not valid.

Count

The number of criteria in the collection.

Item

Item property.

Property detail#

property NamedSelectionCriteria.Count: System.Int32 | None

The number of criteria in the collection.

property NamedSelectionCriteria.Item: Ansys.ACT.Automation.Mechanical.NamedSelectionCriterion | None

Item property.

Method detail#

NamedSelectionCriteria.Add(criterion: Ansys.ACT.Automation.Mechanical.NamedSelectionCriterion) System.Void

Adds the given criterion to the collection.

NamedSelectionCriteria.Clear() System.Void

Clears the collection.

NamedSelectionCriteria.Contains(criterion: Ansys.ACT.Automation.Mechanical.NamedSelectionCriterion) System.Boolean

Returns whether the collection contains the given criterion.

NamedSelectionCriteria.IndexOf(criterion: Ansys.ACT.Automation.Mechanical.NamedSelectionCriterion) System.Int32

Returns the index of the given criterion if it exists in the collection. Returns -1 if it does not

NamedSelectionCriteria.Insert(index: System.Int32, criterion: Ansys.ACT.Automation.Mechanical.NamedSelectionCriterion) System.Void

Inserts the given criterion into the collection at the given index.

NamedSelectionCriteria.Remove(criterion: Ansys.ACT.Automation.Mechanical.NamedSelectionCriterion) System.Boolean

Removes the given criterion from the collection if it exists in the collection. Throws an exception if it does not.

NamedSelectionCriteria.RemoveAt(index: System.Int32) System.Void

Removes the criterion at the given index. Throws an exception if the given index is not valid.