TransferFunctionInputBackOffOutputBackOffTable#

class ansys.stk.core.stkobjects.TransferFunctionInputBackOffOutputBackOffTable#

Class defining an input back off vs output back off 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 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.

Parameters:

index : int

Returns:

None

TransferFunctionInputBackOffOutputBackOffTable.add(self, input_back_off: float, output_back_off: float) TransferFunctionInputBackOffOutputBackOffTableRow#

Add and returns a new row.

Parameters:

input_back_off : float

output_back_off : float

Returns:

TransferFunctionInputBackOffOutputBackOffTableRow

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.

Parameters:

index : int

input_back_off : float

output_back_off : float

Returns:

TransferFunctionInputBackOffOutputBackOffTableRow