 |
| BcfTableCollectionTryGetTable Method |
Gets the table with the specified name.
Namespace: CalculationWorks.BusinessModelAssembly: CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 3.2.1.2
Syntaxpublic bool TryGetTable(
string tableName,
out BcfTable table
)
Public Function TryGetTable (
tableName As String,
<OutAttribute> ByRef table As BcfTable
) As Boolean
public:
bool TryGetTable(
String^ tableName,
[OutAttribute] BcfTable^% table
)
member TryGetTable :
tableName : string *
table : BcfTable byref -> bool
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 name, if the tableName is found; otherwise, null. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if the collection contains an table with the specified name; otherwise
false.
Exceptions
RemarksThe collection is case-sensitive when it searches for table names.
Version InformationCalculationWorks.BusinessModel
Supported in: 3.2, 3.0, 2.1, 2.0
See Also