TransferFunctionInputBackOffOutputBackOffTable#
- class ansys.stk.core.stkobjects.TransferFunctionInputBackOffOutputBackOffTable#
Class defining an input back off vs output back off table.
Overview#
Import detail#
from ansys.stk.core.stkobjects import TransferFunctionInputBackOffOutputBackOffTable
Property detail#
- property TransferFunctionInputBackOffOutputBackOffTable.count: int#
Return the number of elements in the collection.
- property TransferFunctionInputBackOffOutputBackOffTable._new_enum: EnumeratorProxy#
Return an enumerator for the collection.
Method detail#
- TransferFunctionInputBackOffOutputBackOffTable.item(self, index: int) TransferFunctionInputBackOffOutputBackOffTableRow #
Given an index, returns the element in the collection.
- Parameters:
index :
int
- Returns:
TransferFunctionInputBackOffOutputBackOffTableRow
- TransferFunctionInputBackOffOutputBackOffTable.remove_at(self, index: int) None #
Remove the row with the supplied index.
- TransferFunctionInputBackOffOutputBackOffTable.add(self, input_back_off: float, output_back_off: float) TransferFunctionInputBackOffOutputBackOffTableRow #
Add and returns a new row.
- TransferFunctionInputBackOffOutputBackOffTable.insert_at(self, index: int, input_back_off: float, output_back_off: float) TransferFunctionInputBackOffOutputBackOffTableRow #
Insert and returns a new row at the supplied index.