Style.IsBold
Style.IsBold property
获取或设置文本样式是否为粗体的值。
public bool IsBold { get; set; }
例子
让我们通过增加字体大小在其他标题中强调页面的标题。
string dataDir = RunExamples.GetDataDir_Text();
// 将文档加载到 Aspose.Note 中。
Document document = new Document(dataDir + "Aspose.one");
// 遍历页面的标题。
foreach (var title in document.Select(e => e.Title.TitleText))
{
title.ParagraphStyle.FontSize = 24;
title.ParagraphStyle.IsBold = true;
foreach (var run in title.TextRuns)
{
run.Style.FontSize = 24;
run.Style.IsBold = true;
}
}
document.Save(Path.Combine(dataDir, "ChangePageTitleStyle.pdf"));
让我们通过突出显示来强调最新文本的更改。
string dataDir = RunExamples.GetDataDir_Text();
// 将文档加载到 Aspose.Note 中。
Document document = new Document(dataDir + "Aspose.one");
// 获取上周修改的 RichText 节点。
var richTextNodes = document.GetChildNodes<RichText>().Where(e => e.LastModifiedTime >= DateTime.Today.Subtract(TimeSpan.FromDays(7)));
foreach (var node in richTextNodes)
{
// 设置高亮颜色
node.ParagraphStyle.Highlight = Color.DarkGreen;
foreach (var run in node.TextRuns)
{
// 设置高亮颜色
run.Style.Highlight = Color.DarkSeaGreen;
}
}
document.Save(Path.Combine(dataDir, "HighlightAllRecentChanges.pdf"));
也可以看看
- class Style
- 命名空间 Aspose.Note
- 部件 Aspose.Note