FrameViewWhere Method (FuncFrameRow, Boolean) |
Selects rows matching the given criteria.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public FrameView Where(
Func<FrameRow, bool> selector
)
Public Function Where (
selector As Func(Of FrameRow, Boolean)
) As FrameView
public:
FrameView^ Where(
Func<FrameRow^, bool>^ selector
)
member Where :
selector : Func<FrameRow, bool> -> FrameView
Parameters
- selector
- Type: SystemFuncFrameRow, Boolean
A function which accepts or rejects rows.
Return Value
Type:
FrameViewA new view, containing only those rows which were accepted by the
selector function.
Exceptions See Also