No details are provided for this entry.
Declaration Syntax
public interface IDataTable
Table 1739: Members
Property | ColumnNames |
No details are provided for this entry. |
Property | Columns |
Explicitly get the columns of the data table. |
Property | Count |
Gets the number of columns in the table. |
Property | IsFixedColumnCount |
Get whether additional columns can be added or removed from the contained (See Ansys.Mechanical.Interfaces.IDataSeries). |
Property | IsFixedRowCount |
Get whether additional rows can be added or removed from the contained (See Ansys.Mechanical.Interfaces.IDataSeries). |
Property | IsReadOnly |
Gets whether the data table is read-only. |
Property | Item |
Gets or sets the specified column. If key is an (See System.Int32), it will be interpreted as an index. If key is a (See System.String), it will be interpreted as a column name. |
Property | Metadata |
Gets or set a dictionary with additional information that may be useful to understanding the context of data in the table. |
Property | Name |
Get or set the name of the table. |
Property | RowCount |
No details are provided for this entry. |
Method | Add(IDataSeries) |
Add a new column to the data table. |
Method | Clear() |
Drops all columns from the data table. |
Method | Contains(string) |
Returns whether the data table contains a column with the specified name. |
Method | GetRow(int) |
No details are provided for this entry. |
Method | Insert(int, IDataSeries) |
Insert a column at the specified index. |
Method | Remove(object) |
Removes the specified column. If key is an (See System.Int32), it will be interpreted as an index. If key is a (See System.String), it will be interpreted as a column name. |
Method | TryInsertRow(int, IEnumerable) |
Try to insert the values at the specified row index. |
Method | TryRemoveRow(int) |
Try to remove the specified row. |