 | BcfTableTryGetRowFromId Method (NullableInt32, BcfRow) |
Gets the
BcfRow associated with the specified
row.
Namespace:
CalculationWorks.BusinessModel
Assembly:
CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntaxpublic bool TryGetRowFromId(
Nullable<int> rowId,
out BcfRow row
)
Public Function TryGetRowFromId (
rowId As Nullable(Of Integer),
<OutAttribute> ByRef row As BcfRow
) As Boolean
Parameters
- rowId
- Type: SystemNullableInt32
The ID of BcfRow to get. - row
- Type: CalculationWorks.BusinessModelBcfRow
When this method returns, contains the BcfRow associated with the specified rowId, if the rowId is found; otherwise .
Return Value
Type:
Boolean if the collection contains an element with the specified
rowId; otherwise, false.
See Also