Xceed Workbooks for .NET v1.4 Documentation
Theme Class
Members  Example 


Xceed.Workbooks.NET Assembly > Xceed.Workbooks.NET Namespace : Theme Class
Contains the properties and methods of a Theme object.
Syntax
'Declaration

 

Public Class Theme 

   Inherits WorkbookElement
'Usage

 

Dim instance As Theme
public class Theme : WorkbookElement 
Remarks
Derives from WorkbookElement.
Example
var workbook = Workbook.Create( "test.xlsx" )



// Get the first worksheet. A workbook contains at least 1 worksheet.

var cellWorksheet = workbook.Worksheets[ 0 ];



// Modify Workbook theme name and colors.

workbook.Theme.Name = "My Theme";

workbook.Theme.Colors[ ThemeColorType.Accent1 ].Color = Color.Red;

workbook.Theme.Colors[ ThemeColorType.Text1 ].Color = Color.Green;



// Add a title using the new Theme default Text1 color.

cellWorksheet.Cells[ "B1" ].Value = "Modify theme";

cellWorksheet.Cells[ "B1" ].Style.Font = new Font() { Bold = true, Size = 15.5d };



cellWorksheet.Cells[ "C5" ].Value = "Using new Accent1 color";

cellWorksheet.Cells[ "C5" ].Style.Font = new Font() { ThemeColor = new ThemeColor( ThemeColorType.Accent1 ) };



// Save workbook to disk.

workbook.Save();
Inheritance Hierarchy

System.Object
   Xceed.Workbooks.NET.WorkbookElement
      Xceed.Workbooks.NET.Theme

Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Theme Members
Xceed.Workbooks.NET Namespace