Click or drag to resize

BcfRowFilterCreateT Method

[This is preliminary documentation and is subject to change.]

Creates a filter for specified column.

Namespace:  CalculationWorks.ViewModel.Windows
Assembly:  CalculationWorks.ViewModel.Windows (in CalculationWorks.ViewModel.Windows.dll) Version: 4.0.0-beta7
Syntax
public static BcfRowFilter Create<T>(
	BcfColumn<T> column,
	Func<T, bool> predicate
)

Parameters

column
Type: CalculationWorks.BusinessModelBcfColumnT
The column.
predicate
Type: SystemFuncT, Boolean
A function return false to exclude BcfRow from BcfRowViewRepository.

Type Parameters

T
The column-property type

Return Value

Type: BcfRowFilter
The created filter for specified column
Exceptions
ExceptionCondition
ArgumentNullExceptioncolumn or predicate is null.
See Also