[]
Gets or sets custom default settings for exports, formatted by export type and setting name.
public Dictionary<string, Dictionary<string, ExportSetting>> DefaultExportSettings { get; set; }
| Type | Description |
|---|---|
| Dictionary<string, Dictionary<string, ExportSetting>> | A dictionary where keys are export types and values are dictionaries of export settings. |
new Dictionary<string, Dictionary<string, ExportSetting>>()
{
{
"xls",
new Dictionary<string, ExportSetting>()
{
{
"FileName", new ExportSetting()
{
Value = "test",
Visible = false
}
}
}
}
};