Interface ITableExportDataContext<TItem>
- Namespace
- BootstrapBlazor.Components
- Assembly
- BootstrapBlazor.dll
Table 导出数据上下文接口
public interface ITableExportDataContext<out TItem>
Type Parameters
TItem
- Extension Methods
Properties
Columns
获得 当前表格可见列集合
IEnumerable<ITableColumn> Columns { get; }
Property Value
ExportType
获得 导出类型 TableExportType 枚举类型
TableExportType ExportType { get; }
Property Value
Options
获得 当前 Table 内置查询条件方法
QueryPageOptions Options { get; }
Property Value
Rows
获得 当前 行数据集合
IEnumerable<out TItem> Rows { get; }
Property Value
- IEnumerable<TItem>