[]
Loads a theme from the specified XML stream.
public static Theme Load(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | A XML Stream containing the theme data. |
| Type | Description |
|---|---|
| Theme | A Theme object representing the loaded theme. |
using FileStream fileStream = new FileStream(""path/to/theme/file.rdlx-theme"", FileMode.Open, FileAccess.Read);
Theme theme = Theme.Load(fileStream)