 | BcfTableTryGetRowFromId Method (NullableInt32, BcfRow) |
[This is preliminary documentation and is subject to change.]
Gets the
BcfRow associated with the specified
row.
Namespace:
CalculationWorks.BusinessModel
Assembly:
CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.0.0-beta7
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 null.
Return Value
Type:
Booleantrue if the collection contains an element with the specified
rowId; otherwise, false.
See Also