[]
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. |
<remarks>
Format keys are mht, pdf, tiff, xls, xlsx, csv, doc, docx, json, xml, xlsxData, csvData, rtf and txt. Settings keys are the export settings which are available for RenderingExtensions.
<pre><code class="lang-csharp">new Dictionary<string, Dictionary<string, ExportSetting>>()
{
{
"xls",
new Dictionary<string, ExportSetting>()
{
{
"FileName", new ExportSetting()
{
Value = "test",
Visible = false
}
}
}
}
};</code></pre>