IReadOnlyDataTable#

class ansys.mechanical.stubs.v242.Ansys.Mechanical.Interfaces.IReadOnlyDataTable#

Bases: object

IReadOnlyDataTable interface.

Overview#

GetRow

Returns an enumerable to iterate over the values in a row.

ColumnNames

Gets a list of the column names.

Columns

Explicitly get the columns of the table.

Item

Item property.

Metadata

Gets a dictionary with additional information that may be useful to understanding the

Name

Get the name of the table.

RowCount

Gets the maximum number of data points (rows) among all columns in the table

Property detail#

property IReadOnlyDataTable.ColumnNames: System.Collections.Generic.IReadOnlyList[System.String] | None

Gets a list of the column names.

property IReadOnlyDataTable.Columns: System.Collections.Generic.IReadOnlyList[Ansys.Mechanical.Interfaces.IReadOnlyDataSeries] | None

Explicitly get the columns of the table.

property IReadOnlyDataTable.Item: Ansys.Mechanical.Interfaces.IReadOnlyDataSeries | None

Item property.

property IReadOnlyDataTable.Metadata: System.Collections.Generic.IReadOnlyDictionary[System.String, System.Object] | None

Gets a dictionary with additional information that may be useful to understanding the context of data in the table.

property IReadOnlyDataTable.Name: System.String | None

Get the name of the table.

property IReadOnlyDataTable.RowCount: System.Int32 | None

Gets the maximum number of data points (rows) among all columns in the table

Method detail#

IReadOnlyDataTable.GetRow(rowIndex: System.Int32) System.Collections.IEnumerable

Returns an enumerable to iterate over the values in a row.