Exago .NET API Documentation
GetThemeList Method (ReportMgmtBase)
Example 
WebReports.Api.ReportMgmt Namespace > ReportMgmtBase Class : GetThemeList Method
A string with a theme type. Convert members of the ReportTheme.ReportThemeType Enumeration to strings for best results.
Retrieve a list of strings each containing the name of themes for a certain report type.
Syntax
public System.Collections.Generic.IEnumerable<string> GetThemeList( 
   System.string themeType
)

Parameters

themeType
A string with a theme type. Convert members of the ReportTheme.ReportThemeType Enumeration to strings for best results.

Return Value

An IEnumerable object of theme names as strings.
Example
Retrieve an IEnumerable object with the names of ExpressView (v2021.1+) themes.
using WebReports.Api.Theme;
IEnumerable<string> evThemes = api.ReportManagement.GetThemeList(ReportTheme.ReportThemeType.ExpressView_v2.ToString());
See Also

Reference

ReportMgmtBase Class
ReportMgmtBase Members