如何让文字加下划线和粗体?我的文字变得大胆但没有加下划线
这是我的一些代码,非常简单,使用运行属性加粗并为给定文本加下划线。
Run run_header = para_main.AppendChild(new Run());
RunProperties runProps = new RunProperties();
Bold bold = new Bold();
Underline ul = new Underline();
runProps.Append(bold);
runProps.Append(ul);
run_header.AppendChild(new RunProperties(runProps));
//run_header.AppendChild(new RunProperties(new Bold(), new Underline()));
string username = form.Username;
string proces_header = form.HeaderTitle;
run_header.AppendChild(new Text(proces_header + " | " + username));
run_header.AppendChild(new Break());
答案 0 :(得分:16)
尝试将Underline Val属性设置为Single,如下所示:
new Underline() { Val = DocumentFormat.OpenXml.Wordprocessing.UnderlineValues.Single }