彩票走势图

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

原创|使用教程|编辑:龚雪|2015-08-24 09:01:32.000|阅读 812 次

概述:如何使用Aspose.Words来操作主题属性

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

我们已经在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

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP