[]
Gets the all themes associated with the report.
public ExpressionInfoCollection Themes { get; }
Type | Description |
---|---|
ExpressionInfoCollection | A Collection<T> object containing the themes URIs associated with the report. |
<pre><code class="lang-csharp">Report.Themes.Add("path/to/your/theme.rdlx-theme");</code></pre>
or using an expression
Report.Themes.Add("=IIF(Parameters!Theme.Value = \"Black\", \"black.rdlx-theme\",\"white.rdlx-theme\")");