[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.Report.Themes

Themes Property

Themes

Gets the all themes associated with the report.

Declaration
public ExpressionInfoCollection Themes { get; }
Property Value
Type Description
ExpressionInfoCollection

A Collection<T> object containing the themes URIs associated with the report.

Examples
<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\")");