 | BcfTupleFuncT Delegate |
Namespace:
CalculationWorks.BusinessModel
Assembly:
CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntaxpublic delegate IEnumerable<T> BcfTupleFunc<out T>(
BcfReadOnlyArrayList<BcfParameter> itemParameters,
BcfRow calculatingRow,
bool allowUnchecked
)
Public Delegate Function BcfTupleFunc(Of Out T) (
itemParameters As BcfReadOnlyArrayList(Of BcfParameter),
calculatingRow As BcfRow,
allowUnchecked As Boolean
) As IEnumerable(Of T)
Parameters
- itemParameters
- Type: CalculationWorks.BusinessModelBcfReadOnlyArrayListBcfParameter
The item parameters - calculatingRow
- Type: CalculationWorks.BusinessModelBcfRow
The calculating row - allowUnchecked
- Type: SystemBoolean
to allow using optimizer cells and to skip checks.
Type Parameters
- T
- Tuple type
Return Value
Type:
IEnumerableT
See Also