示例#1
0
 public void EndHyperlink(OpenXmlRunPropertiesModel textStyle)
 {
     _contents.Add(OpenXmlFieldGenerators.EndHyperlink());
 }
示例#2
0
 public void AddLabel(string label, int level, OpenXmlRunPropertiesModel textStyle)
 {
     _contents.Add(OpenXmlFieldGenerators.TableOfContentsEntry(label, level));
 }
示例#3
0
 public void StartHyperlink(string target, bool bookmarkLink, OpenXmlRunPropertiesModel textStyle)
 {
     _contents.Add(OpenXmlFieldGenerators.StartHyperlink(target, bookmarkLink));
 }
示例#4
0
 public void AddPageCountField(OpenXmlRunPropertiesModel textStyle)
 {
     _contents.Add(OpenXmlFieldGenerators.PageCountField(textStyle));
 }