IDataTable
#
- class ansys.mechanical.stubs.v242.Ansys.Mechanical.Interfaces.IDataTable#
Bases:
object
IDataTable interface.
Overview#
Add a new column to the data table. |
|
Drops all columns from the data table. |
|
Returns whether the data table contains a column with the specified name. |
|
Insert a column at the specified index. |
|
Removes the specified column. If the specifier of the column to remove is an T:System.Int32, it will |
|
Try to insert the values at the specified row index. |
|
Try to remove the specified row. |
Explicitly get the columns of the data table. |
|
Gets the number of columns in the table. |
|
Get whether additional columns can be added or removed from the contained T:Ansys.Mechanical.Interfaces.IDataSeries. |
|
Get whether additional rows can be added or removed from the contained |
|
Gets whether the data table is read-only. |
|
Item property. |
|
Gets or set a dictionary with additional information that may be useful to understanding |
|
Get or set the name of the table. |
|
Property detail#
- property IDataTable.Columns: List[Ansys.Mechanical.Interfaces.IDataSeries] | None#
Explicitly get the columns of the data table.
- property IDataTable.IsFixedColumnCount: bool | None#
Get whether additional columns can be added or removed from the contained T:Ansys.Mechanical.Interfaces.IDataSeries.
- property IDataTable.IsFixedRowCount: bool | None#
Get whether additional rows can be added or removed from the contained T:Ansys.Mechanical.Interfaces.IDataSeries.
- property IDataTable.Item: Ansys.Mechanical.Interfaces.IDataSeries | None#
Item property.
Method detail#
- IDataTable.Add(dataSeries: Ansys.Mechanical.Interfaces.IDataSeries) None #
Add a new column to the data table.
- IDataTable.Contains(name: str) bool #
Returns whether the data table contains a column with the specified name.
- IDataTable.Insert(columnIndex: int, dataSeries: Ansys.Mechanical.Interfaces.IDataSeries) None #
Insert a column at the specified index.
Removes the specified column. If the specifier of the column to remove is an T:System.Int32, it will
be interpreted as an index. If the specifier of the column to remove is a T:System.String, it will
be interpreted as a column name.