ITable#

class ansys.mechanical.stubs.v241.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.

get_Count

get_Count method.

get_Item

get_Item method.

get_Keys

get_Keys method.

get_Values

get_Values 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.

ITable.get_Count() int#

get_Count method.

ITable.get_Item(key: str) Iterable#

get_Item method.

ITable.get_Keys() Iterable[str]#

get_Keys method.

ITable.get_Values() Iterable[Iterable]#

get_Values method.