[]
Saves the specified theme to the specified file.
public static void WriteTheme(Theme theme, FileInfo fileInfo)
Type | Name | Description |
---|---|---|
Theme | theme | A Theme object to save. |
FileInfo | fileInfo | A FileInfo object representing the file where the theme will be saved. |
var themeFileInfo = new FileInfo("path/for/theme.rdlx-theme");
XmlThemeWriter.WriteTheme(yourTheme, themeFileInfo);