Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    IDocumentTheme Interface

    Base interface for a document theme.

    Namespace: DevExpress.XtraRichEdit.API.Native

    Assembly: DevExpress.RichEdit.v25.1.Core.dll

    NuGet Package: DevExpress.RichEdit.Core

    #Declaration

    public interface IDocumentTheme

    The following members return IDocumentTheme objects:

    #Remarks

    The DocumentTheme class is the default implementation of the IDocumentTheme interface. Use this class to specify the theme fonts information used in the document.

    The Document.Theme property returns an object implementing the IDocumentTheme interface. You can pass this object to the DocumentTheme(IDocumentTheme) constructor to clone the theme from the current document.

    The code sample below shows how to create a new DocumentTheme object and pass it as the Document.Theme property value:

    //Create a new DocumentTheme object:
    DocumentTheme theme = new DocumentTheme();
    
    //Specify Body and Heading fonts for Complex Script...
    theme.BodyComplexScript = "Microsoft Sans Serif";
    theme.HeadingsComplexScript = "Tahoma";
    
    //...Latin...
    theme.HeadingsLatin = "Segoe UI Semilight";
    theme.BodyLatin = "Times New Roman";
    
    //..and East Asian languages:
    theme.HeadingsEastAsia = "DengXian Light";
    theme.BodyEastAsia = "DengXian";
    
    //Set the created object as the Theme property value:
    doc.Theme = theme;
    
    // Specify theme font types used for Complex Script and East Asian languages:
    CharacterProperties fontProperties = doc.BeginUpdateCharacters(doc.Range);
    
    fontProperties.ThemeFontComplexScript = ThemeFont.HeadingsComplexScript;
    fontProperties.ThemeFontEastAsia = ThemeFont.BodyEastAsia;
    
    doc.EndUpdateCharacters(fontProperties);
    
    
    //Save the result:
    doc.SaveDocument("123456.docx", DocumentFormat.Docx);
    
    See Also