码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-08-21 17:23:21      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:aspose.words|使用教程

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

  • 主题

  • 主题字体

  • 主题颜色

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

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.

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

标签:aspose.words|使用教程

原文地址:http://flt9999.blog.51cto.com/10599358/1686829

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!