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 the 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 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.
The FieldHyperlink
class implements the HYPERLINK
field.
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.