 | BcfColumnExtensionsGetValuesT Method (BcfColumnT, IEnumerableBcfRow) |
Returns cell values of specified rows.
Namespace:
CalculationWorks.BusinessModel
Assembly:
CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntaxpublic static IEnumerable<T> GetValues<T>(
this BcfColumn<T> column,
IEnumerable<BcfRow> rows
)
<ExtensionAttribute>
Public Shared Function GetValues(Of T) (
column As BcfColumn(Of T),
rows As IEnumerable(Of BcfRow)
) As IEnumerable(Of T)
Parameters
- column
- Type: CalculationWorks.BusinessModelBcfColumnT
The column. - rows
- Type: System.Collections.GenericIEnumerableBcfRow
The rows
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:CalculationWorks.BusinessModel.BcfColumnExtensions.GetValues``1(CalculationWorks.BusinessModel.BcfColumn{``0},System.Collections.Generic.IEnumerable{CalculationWorks.BusinessModel.BcfRow})"]
Return Value
Type:
IEnumerableTCell values of specified
rows.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
BcfColumnT. 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