Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
A hyperlink in Microsoft Word documents is the HYPERLINK
field. In Aspose.Words, hyperlinks are implemented through the FieldHyperlink class.
Use the InsertHyperlink method to insert a hyperlink into the document. This method accepts three parameters:
URL
is a name of a bookmark inside a documentThe InsertHyperlink method always adds apostrophes at the beginning and end of the URL.
Font
property.
The following code example shows how to insert a hyperlink into a document using DocumentBuilder:
Hyperlink in Microsoft Word documents is a field. A field in a Word document, as we said earlier, is a complex structure consisting of multiple nodes that include field start, field code, field separator, field result and field end. Fields can be nested, contain rich content and span multiple paragraphs or sections in a document.
To replace or modify hyperlinks, it is need to find the hyperlinks in the document and replace either their text, URLs, or both.
The following code example shows how to find all hyperlinks in Word document and changes their URL
and display name:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.