WorkbookSettings.GetThemeFont

WorkbookSettings.GetThemeFont method

Gets the default theme font name.

public string GetThemeFont(FontSchemeType type)
ParameterTypeDescription
typeFontSchemeTypeThe scheme type of the font.

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class WorkbookSettingsMethodGetThemeFontWithFontSchemeTypeDemo
    {
        public static void Run()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            
            // Get the default theme font for minor scheme type
            string minorFont = workbook.Settings.GetThemeFont(FontSchemeType.Minor);
            Console.WriteLine("Minor theme font: " + minorFont);
            
            // Get the default theme font for major scheme type
            string majorFont = workbook.Settings.GetThemeFont(FontSchemeType.Major);
            Console.WriteLine("Major theme font: " + majorFont);
            
            // Save the workbook
            workbook.Save("ThemeFontExample.xlsx");
        }
    }
}

See Also