SetLink
Sets the hyperlink address.
Parameters:
Name |
Type |
Description |
sLink |
string
|
The hyperlink address. |
Returns:
- Type
-
boolean
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("ONLYOFFICE Document Builder");
oParagraph.AddElement(oRun);
var oHyperlink = oParagraph.AddHyperlink("https://api.onlyoffice.com/docbuilder/basic");
oHyperlink.SetLink("https://api.onlyoffice.com/");
builder.SaveFile("docx", "SetLink.docx");
builder.CloseFile();
Resulting document