Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/BootstrapBlazor/Options/TableExportOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@
/// </summary>
/// <remarks>注意格式化后返回值是 <code>string</code> 会导致原始值类型改变</remarks>
public string ArrayDelimiter { get; set; } = ",";

/// <summary>
/// 获得/设置 是否启用 Excel 自动筛选 默认 true
/// </summary>
public bool AutoFilter { get; set; } = true;

/// <summary>
/// 获得/设置 是否启用 Excel 自动宽度 默认 false
/// </summary>
public bool EnableAutoWidth { get; set; }

Check warning on line 50 in src/BootstrapBlazor/Options/TableExportOptions.cs

View check run for this annotation

Codecov / codecov/patch

src/BootstrapBlazor/Options/TableExportOptions.cs#L50

Added line #L50 was not covered by tests
}