Hi!
The code below describes the problem: I cannot set the value of the built-in document property “HyperlinkBase”.
public static void DoIt()
{
WorkbookDesigner designer = new WorkbookDesigner();
Workbook workbook = new Workbook(Constants.sourcePath + “Blank.xlsx”);
designer.Workbook = workbook;
var hyperlinkBase = workbook.Worksheets.BuiltInDocumentProperties[“HyperlinkBase”];
hyperlinkBase.Value = “http://www.svd.se”; // This has no effect
var title = workbook.Worksheets.BuiltInDocumentProperties[“Title”];
title.Value = “SomeTitle”; // This sets the Title.
string output = Constants.destPath + “Hyperlink_result.xlsx”;
workbook.Save(output);
Process.Start(output);
}