[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Rdl.Themes.Theme.Load

Load Method

Load(Stream)

Loads a theme from the specified XML stream.

Declaration
public static Theme Load(Stream stream)
Parameters
Type Name Description
Stream stream

A XML Stream containing the theme data.

Returns
Type Description
Theme

A Theme object representing the loaded theme.

Examples
using FileStream fileStream = new FileStream(""path/to/theme/file.rdlx-theme"", FileMode.Open, FileAccess.Read);
Theme theme = Theme.Load(fileStream)