• Aspose.Words使用教程之如何操作主题属性


    我们已经在Aspose.Words 15.7.0添加了基本API来访问文档的主题属性,现在,这API包括以下几个公共对象:

    • 主题
    • 主题字体
    • 主题颜色 

    aspose.words最新下载icon-default.png?t=M666https://www.evget.com/product/564/download 以下介绍如何获取主题属性:

    C#

    Document doc = new Document(MyDir + @"in.docx");
    Theme theme = doc.Theme;
    Console.WriteLine(theme.MajorFonts.Latin); // Major (Headings) font for Latin characters.
    Console.WriteLine(theme.MinorFonts.EastAsian);    // Minor (Body) font for EastAsian characters.
    Console.WriteLine(theme.Colors.Accent1);          // Color for theme color Accent 1.

    Visual Basic

    Dim doc As New Document(MyDir & "in.docx")
    Dim theme As Theme = doc.Theme
    Console.WriteLine(theme.MajorFonts.Latin) ' Major (Headings) font for Latin characters.
    Console.WriteLine(theme.MinorFonts.EastAsian) ' Minor (Body) font for EastAsian characters.
    
    Console.WriteLine(theme.Colors.Accent1) ' Color for theme color Accent 1.
    
    

    以下介绍如何设置主题属性:

    C#

    Document doc = new Document(MyDir + @"in.docx");
    Theme theme = doc.Theme;
    theme.MinorFonts.Latin = "Times New Roman";     // Set Times New Roman font as Body theme font for Latin Character.
    theme.Colors.Hyperlink = Color.Gold;            // Set Color.Gold for theme color Hyperlink.

    Visual Basic

    Dim doc As New Document(MyDir & "in.docx")
    Dim theme As Theme = doc.Theme
    theme.MinorFonts.Latin = "Times New Roman" ' Set Times New Roman font as Body theme font for Latin Character.
    theme.Colors.Hyperlink = Color.Gold ' Set Color.Gold for theme color Hyperlink.
  • 相关阅读:
    Vue3核心语法一
    MyBatis【一】
    2、知识蒸馏
    生物素标记链霉亲和素,Biotin-Streptavidin,链霉亲和素-生物素偶联物(SA-Biotin)
    蓝桥杯每日一题2023.10.27
    Qt 之自定义控件(开关按钮)
    Django05_反向解析
    SPI通讯简介
    transformer系列5---transformer显存占用分析
    [论文笔记]Prompt Tuning
  • 原文地址:https://blog.csdn.net/m0_67129275/article/details/126305214