我正在尝试添加链接到同一word文档中的标题的超链接。
到目前为止,这是我的代码:
首先我添加超链接
Paragraph p = new Paragraph();
Hyperlink h = new Hyperlink(){ Anchor = new StringValue("_Link") };
Run r = new Run();
RunProperties rp = new RunProperties(){ Val = "Hyperlink" };
Text t = new Text("Click here");
r.Append(rp);
r.Append(t);
p.Append(r);
body.Append(p);
然后我添加了标题(带有必要的书签)
Paragraph p = new Paragraph();
Run r = new Run(new Text("My Heading"));
ParagraphProperties pp = new ParagraphProperties();
ParagraphStyleId psi = new ParagraphStyleId(){ Val = new StringValue("Heading1") };
p.Append(r);
p.Append(pp);
p.Append(psi);
p.Append(new BookmarkStart() { Name = new StringValue("_Link") };
p.Append(new BookmarkEnd());
body.Append(p);
我看不出我错过了什么。我在超链接中设置了锚点,该超链接应链接到带有书签的标题,该书签具有相同的名称。 (来自超链接的锚点=来自标题中的书签的名称)。
或者我是否需要在MainDocumentPart.HyperlinkRelationship中添加HyperLinkRelationship,就像我想在网站上添加带URI的超链接一样?
答案 0 :(得分:1)
您要将header
作为段落添加到body
,而是需要创建标题部分 -
HeaderPart headerPart = mainDocumentPart.AddNewPart<HeaderPart>();
string headerPartId = mainDocumentPart.GetIdOfPart(headerPart);
GenerateHeaderPartContent(headerPart);
GenerateHeaderPartContent
private void GeneratePartContent(HeaderPart part)
{
Header header1 = new Header(){ MCAttributes = new MarkupCompatibilityAttributes(){ Ignorable = "w14 w15 wp14" } };
header1.AddNamespaceDeclaration("wpc", "http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas");
header1.AddNamespaceDeclaration("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
header1.AddNamespaceDeclaration("o", "urn:schemas-microsoft-com:office:office");
header1.AddNamespaceDeclaration("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
header1.AddNamespaceDeclaration("m", "http://schemas.openxmlformats.org/officeDocument/2006/math");
header1.AddNamespaceDeclaration("v", "urn:schemas-microsoft-com:vml");
header1.AddNamespaceDeclaration("wp14", "http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing");
header1.AddNamespaceDeclaration("wp", "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing");
header1.AddNamespaceDeclaration("w10", "urn:schemas-microsoft-com:office:word");
header1.AddNamespaceDeclaration("w", "http://schemas.openxmlformats.org/wordprocessingml/2006/main");
header1.AddNamespaceDeclaration("w14", "http://schemas.microsoft.com/office/word/2010/wordml");
header1.AddNamespaceDeclaration("w15", "http://schemas.microsoft.com/office/word/2012/wordml");
header1.AddNamespaceDeclaration("wpg", "http://schemas.microsoft.com/office/word/2010/wordprocessingGroup");
header1.AddNamespaceDeclaration("wpi", "http://schemas.microsoft.com/office/word/2010/wordprocessingInk");
header1.AddNamespaceDeclaration("wne", "http://schemas.microsoft.com/office/word/2006/wordml");
header1.AddNamespaceDeclaration("wps", "http://schemas.microsoft.com/office/word/2010/wordprocessingShape");
Paragraph paragraph1 = new Paragraph(){ RsidParagraphAddition = "00225DC9", RsidRunAdditionDefault = "00225DC9" };
ParagraphProperties paragraphProperties1 = new ParagraphProperties();
ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId(){ Val = "Header" };
paragraphProperties1.Append(paragraphStyleId1);
BookmarkStart bookmarkStart1 = new BookmarkStart(){ Name = "HeadingBookmark", Id = "1" };
Run run1 = new Run();
Text text1 = new Text();
text1.Text = "Test";
run1.Append(text1);
paragraph1.Append(paragraphProperties1);
paragraph1.Append(bookmarkStart1);
paragraph1.Append(run1);
BookmarkEnd bookmarkEnd1 = new BookmarkEnd(){ Id = "1" };
header1.Append(paragraph1);
header1.Append(bookmarkEnd1);
part.Header = header1;
}
标题部分准备就绪后,将其添加到文档部分属性 -
HeaderReference headerReference1 = new HeaderReference(){ Type = HeaderFooterValues.Default, Id = headerPartId };
也是一个很好的参考检查 - https://msdn.microsoft.com/en-us/library/office/cc546917.aspx
答案 1 :(得分:0)
用于打开的XML(摘要)
// Your new paragraph with the hyperlink
Paragraph hyperlinkParagraph = new Paragraph();
// Run for the hyperlink
Run hyperlinkRun = new Run();
// Styling for the hyperlink
RunProperties runPropertiesHyperLink = new RunProperties(
new RunStyle { Val = "Hyperlink", },
new Underline { Val = UnderlineValues.Single },
new Color { ThemeColor = ThemeColorValues.Hyperlink });
// Actual hyperlink
Hyperlink xmlHyperLink = new Hyperlink()
{
Anchor = "https://stackoverflow.com",
DocLocation = "https://stackoverflow.com"
};
// Text that you see to click on
Text hyperLinkText = new Text("Click for going to StackOverflow!");
// Apply the styling in this order to the run
hyperlinkRun.Append(runPropertiesHyperLink);
hyperlinkRun.Append(hyperLinkText);
// Now add the run to the hyperlink
xmlHyperLink.Append(hyperlinkRun);
// Add the hyperlink to the paragraph
hyperlinkParagraph.Append(xmlHyperLink);
// Add paragraph to the body
_mainBody.Append(hyperlinkParagraph );
答案 2 :(得分:-1)
DocIO是一个.NET库,可以读取,编写,修改和呈现Microsoft Word文档。使用DocIO,您可以非常轻松地添加书签和超链接。您不必担心超链接的位置(在页眉或页脚或文档正文中)并决定添加引用的位置。
如果您符合条件,整套控件都可通过community license program免费获得(商业应用程序)。社区许可是完整的产品,没有任何限制或水印。
第1步:创建控制台应用程序
第2步:添加对这3个程序集的引用(Syncfusion.DocIO.Base,Syncfusion.Compression.Base和Syncfusion.OfficeChart.Base)。您还可以通过NuGet添加这些引用
第3步:复制&amp;粘贴以下代码片段,打开现有的Word文档,替换内容并将其另存为Word文档。
using Syncfusion.DocIO.DLS;
using Syncfusion.DocIO;
namespace DocIO_HyperlinkinkToBookmark
{
class Program
{
static void Main(string[] args)
{
using (WordDocument document = new WordDocument())
{
document.EnsureMinimal();
IWSection section = document.LastSection;
IWParagraph paragraph = document.LastParagraph;
//add text enclosed by BookmarkStart and BookmarkEnd into a paragraph
paragraph.AppendBookmarkStart("Title1Mark");
paragraph.AppendText("Title paragraph");
paragraph.AppendBookmarkEnd("Title1Mark");
//Add few paragraph of textual data
for (int i = 0; i < 10; i++)
section.AddParagraph().AppendText("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
paragraph = section.AddParagraph();
//Add a hyperlink with the specified display text and targets to Bookmark named "Title1Mark"
paragraph.AppendHyperlink("Title1Mark", "Link to Title", HyperlinkType.Bookmark);
document.Save("output.docx", FormatType.Docx);
}
}
}
}
有关DocIO的更多信息,请参阅我们的help documentation
注意:我为Syncfusion工作