欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Aspose.Words使用教程之如何操作主题属性 博客分类: 文档管理,控件,使用教程 Aspose.words最新使用教程 

程序员文章站 2024-03-25 09:39:34
...

 

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

 

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

 

共对象:

 

       1.主题

 

       2.主题字体

 

       3.主题颜色

 

以下介绍如何获取主题属性:

 

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.

 

查询更多信息——慧都控件网