Click or drag to resize
CalculationWorks Logo
BcfColumnCollectionTryGetColumn Method
Gets the column with the specified name.

Namespace: CalculationWorks.BusinessModel
Assembly: CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 2.1.0.0
Syntax
public bool TryGetColumn(
	string columnName,
	out BcfColumn column
)

Parameters

columnName
Type: SystemString
The name of the column to get.
column
Type: CalculationWorks.BusinessModelBcfColumn
When this method returns, contains the column with the specified name, if the columnName is found; otherwise, null. This parameter is passed uninitialized.

Return Value

Type: Boolean
true if the collection contains an column with the specified name; otherwise false.
Exceptions
ExceptionCondition
ArgumentNullExceptioncolumnName is null
Remarks
The collection is case-sensitive when it searches for column names.
See Also