文檔首頁>>Aspose中文文檔>>插入超鏈接
插入超鏈接
Aspose.Words是一種高級Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務。API支持生成,修改,轉換,呈現(xiàn)和打印文檔,而無需在跨平臺應用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式處理,并允許將各類文檔導出或轉換為固定布局文件格式和最常用的圖像/多媒體格式。
以下代碼示例演示如何使用DocumentBuilder類將超鏈接插入到 Word 文檔中:
Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.Write("Please make sure to visit "); // Specify font formatting for the hyperlink. builder.Font.Color = Color.Blue; builder.Font.Underline = Underline.Single; // Insert the link. builder.InsertHyperlink("Aspose Website", "https://www.aspose.com", false); // Revert to default formatting. builder.Font.ClearFormatting(); builder.Write(" for more information."); doc.Save("Insert_Hyperlink_In_Document.doc");
點擊復制
運行代碼
代碼示例
如需下載產(chǎn)品Aspose.Words ,請點擊產(chǎn)品名進入下載頁面