Show / Hide Table of Contents

Method WithFlush

| Improve this Doc View Source

WithFlush<TData>(Column<TData>, Func<T, TData>)

Setup the flushing operation.

Declaration
public RowInput<T> WithFlush<TData>(Column<TData> column, Func<T, TData> getValue)
Parameters
Type Name Description
Column<TData> column

The column.

System.Func<T, TData> getValue

The delegate to return data value.

Returns
Type Description
RowInput<T>

This row input for fluent coding.

Type Parameters
Name Description
TData

Data type of column.

| Improve this Doc View Source

WithFlush<TData>(Column<TData>, Func<RowPresenter, T, TData>)

Setup the flushing operation.

Declaration
public RowInput<T> WithFlush<TData>(Column<TData> column, Func<RowPresenter, T, TData> getValue)
Parameters
Type Name Description
Column<TData> column

The column.

System.Func<RowPresenter, T, TData> getValue

The delegate to return data value.

Returns
Type Description
RowInput<T>

This row input for fluent coding.

Type Parameters
Name Description
TData

Data type of column.

| Improve this Doc View Source

WithFlush(Column, Func<RowPresenter, T, Boolean>)

Setup the flushing operation.

Declaration
public RowInput<T> WithFlush(Column column, Func<RowPresenter, T, bool> flush)
Parameters
Type Name Description
Column column

The column.

System.Func<RowPresenter, T, System.Boolean> flush

The delegate to flush input.

Returns
Type Description
RowInput<T>

This row input for fluent coding.

| Improve this Doc View Source

WithFlush(Column, Func<T, ColumnValueBag>)

Setup the flushing operation.

Declaration
public RowInput<T> WithFlush(Column column, Func<T, ColumnValueBag> valueBagGetter)
Parameters
Type Name Description
Column column

The column.

System.Func<T, ColumnValueBag> valueBagGetter

The delegate to get column value bag.

Returns
Type Description
RowInput<T>

This row input for fluent coding.

  • Improve this Doc
  • View Source
Back to top Copyright © Weifen Luo | DevZest