Xceed Workbooks for .NET v3.0 Documentation
Xceed.Workbooks.NET Assembly / Xceed.Workbooks.NET Namespace / Theme Class
Members Example


In This Topic
    Theme Class
    In This Topic
    Represents a Theme in a Workbook-related context.
    Syntax
    'Declaration
     
    
    Public Class Theme 
       Inherits WorkbookElement
    'Usage
     
    
    Dim instance As Theme
    public class Theme : WorkbookElement 
    Remarks
    This class 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