Click or drag to resize

BcfColumnExtensionsGetValues Method (BcfColumn, BcfRow)

Returns cell values of specified rows. The result may be casted to IEnumerable of columns ValueType.

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public static IEnumerable GetValues(
	this BcfColumn column,
	params BcfRow[] rows
)

Parameters

column
Type: CalculationWorks.BusinessModelBcfColumn
The column.
rows
Type: CalculationWorks.BusinessModelBcfRow
The rows

Return Value

Type: IEnumerable
Cell values of specified rows. The result may be casted to IEnumerable of columns ValueType.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BcfColumn. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also