We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1579e1 commit f5d6e1fCopy full SHA for f5d6e1f
src/BootstrapBlazor/Options/TableExportOptions.cs
@@ -38,4 +38,14 @@ public class TableExportOptions
38
/// </summary>
39
/// <remarks>注意格式化后返回值是 <code>string</code> 会导致原始值类型改变</remarks>
40
public string ArrayDelimiter { get; set; } = ",";
41
+
42
+ /// <summary>
43
+ /// 获得/设置 是否启用 Excel 自动筛选 默认 true
44
+ /// </summary>
45
+ public bool AutoFilter { get; set; } = true;
46
47
48
+ /// 获得/设置 是否启用 Excel 自动宽度 默认 false
49
50
+ public bool EnableAutoWidth { get; set; }
51
}
0 commit comments