Enables to use lambda expressions during a Filter object instantiation.

Namespace: Dapfor.Wpf.Utils
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public delegate bool FilterMethodDelegate(
	Row row
)
Visual Basic
Public Delegate Function FilterMethodDelegate ( 
	row As Row
) As Boolean
Visual C++
public delegate bool FilterMethodDelegate(
	Row^ row
)
F#
type FilterMethodDelegate = 
    delegate of 
        row : Row -> bool

Parameters

row
Type: Dapfor.Wpf.Controls..::..Row
The Row object.

Return Value

Type: Boolean

See Also