 | 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
Syntaxpublic static BcfRowFilter Create<T>(
BcfColumn<T> column,
Func<T, bool> predicate
)
Public Shared Function Create(Of T) (
column As BcfColumn(Of T),
predicate As Func(Of T, Boolean)
) As BcfRowFilter
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:
BcfRowFilterThe created filter for specified
column
Exceptions
See Also