TransferFunctionInputBackOffVsCOverImTable#

class ansys.stk.core.stkobjects.TransferFunctionInputBackOffVsCOverImTable#

Class defining an input back off vs C/Im table.

Overview#

item

Given an index, returns the element in the collection.

remove_at

Remove the row with the supplied index.

add

Add and returns a new row.

insert_at

Insert and returns a new row at the supplied index.

count

Return the number of elements in the collection.

_new_enum

Return an enumerator for the collection.

Import detail#

from ansys.stk.core.stkobjects import TransferFunctionInputBackOffVsCOverImTable

Property detail#

property TransferFunctionInputBackOffVsCOverImTable.count: int#

Return the number of elements in the collection.

property TransferFunctionInputBackOffVsCOverImTable._new_enum: EnumeratorProxy#

Return an enumerator for the collection.

Method detail#

TransferFunctionInputBackOffVsCOverImTable.item(self, index: int) TransferFunctionInputBackOffVsCOverImTableRow#

Given an index, returns the element in the collection.

Parameters:

index : int

Returns:

TransferFunctionInputBackOffVsCOverImTableRow

TransferFunctionInputBackOffVsCOverImTable.remove_at(self, index: int) None#

Remove the row with the supplied index.

Parameters:

index : int

Returns:

None

TransferFunctionInputBackOffVsCOverImTable.add(self, input_back_off: float, c_over_im: float) TransferFunctionInputBackOffVsCOverImTableRow#

Add and returns a new row.

Parameters:

input_back_off : float

c_over_im : float

Returns:

TransferFunctionInputBackOffVsCOverImTableRow

TransferFunctionInputBackOffVsCOverImTable.insert_at(self, index: int, input_back_off: float, c_over_im: float) TransferFunctionInputBackOffVsCOverImTableRow#

Insert and returns a new row at the supplied index.

Parameters:

index : int

input_back_off : float

c_over_im : float

Returns:

TransferFunctionInputBackOffVsCOverImTableRow