 | BcfTableCollectionTryGetTable Method (String, BcfTable) |
[This is preliminary documentation and is subject to change.]
Gets the
BcfTable with specified
tableName.
Namespace:
CalculationWorks.BusinessModel
Assembly:
CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.0.0-beta7
Syntaxpublic bool TryGetTable(
string tableName,
out BcfTable table
)
Public Function TryGetTable (
tableName As String,
<OutAttribute> ByRef table As BcfTable
) As Boolean
Parameters
- tableName
- Type: SystemString
The name of the table to get. - table
- Type: CalculationWorks.BusinessModelBcfTable
When this method returns, contains the table with the specified tableName, if the tableName is found; otherwise, null. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if the collection contains a table with the specified
tableName; otherwise
false.
See Also