ITable#

class ansys.mechanical.stubs.v251.Ansys.Mechanical.Interfaces.ITable#

Bases: object

Exposes a table, which is a two-dimensional tabular data structure with labeled columns. The columns are usually instances of IVariable but can be any sort of array

Overview#

ContainsKey

ContainsKey method.

GetEnumerator

GetEnumerator method.

TryGetValue

TryGetValue method.

Count

Count property.

Dependents

The portion of the table corresponding to dependent variables.

Independents

The portion of the table corresponding to independent variables.

Item

Item property.

Keys

Keys property.

Values

Values property.

Property detail#

property ITable.Count: int | None#

Count property.

property ITable.Dependents: dict[str, Iterable] | None#

The portion of the table corresponding to dependent variables.

property ITable.Independents: dict[str, Iterable] | None#

The portion of the table corresponding to independent variables.

property ITable.Item: Iterable | None#

Item property.

property ITable.Keys: Iterable[str] | None#

Keys property.

property ITable.Values: Iterable[Iterable] | None#

Values property.

Method detail#

ITable.ContainsKey(key: str) bool#

ContainsKey method.

ITable.GetEnumerator() Iterator#

GetEnumerator method.

ITable.TryGetValue(key: str, value: Iterable) bool#

TryGetValue method.