彩票走势图

PPT格式控件Spire.Presentation新功能演示:给 PPT中SmartArt图形的节点添加超链接

翻译|使用教程|编辑:李显亮|2020-10-14 10:54:58.673|阅读 309 次

概述:本文将介绍如何使用Spire.Presentation for .NET给PPT文档中的SmartArt图形的节点添加超链接。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Spire.Presentation for .NET 是专业的 PowerPoint组件,开发者可以在 .NET 平台上对 PPT文档进行生成、修改、转换和打印等操作,而无需安装 Microsoft PowerPoint。

本文将介绍如何使用Spire.Presentation for .NET给PPT文档中的SmartArt图形的节点添加超链接。可点击此处下载最新版测试。

这么优秀的国产工具怎能错过呢!软件国产化服务季!全线产品均享85折起,查看优惠价格!想要获取更多福利的朋友哦~


C#

using Spire.Presentation;
using Spire.Presentation.Diagrams;

namespace SmartArt
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建Presentation实例
            Presentation ppt = new Presentation();
            //加载PPT文档
            ppt.LoadFromFile("SmartArt.pptx");

            //获取第一张幻灯片
            ISlide slide = ppt.Slides[0];
           
            //获取SmartArt图形
            ISmartArt smartArt = slide.Shapes[0] as ISmartArt;

            //添加指向网页的超链接到SmartArt图形的第一个节点
            smartArt.Nodes[0].Click = new ClickHyperlink("//www.e-iceblue.com");
            //添加指向文档中指定幻灯片的超链接到SmartArt图形的第二个节点
            smartArt.Nodes[1].Click = new ClickHyperlink(ppt.Slides[1]);

            //保存结果文档
            ppt.SaveToFile("Result.pptx", FileFormat.Pptx2013);
        }
    }
}

VB.NET

Imports Spire.Presentation
Imports Spire.Presentation.Diagrams

Namespace SmartArt
    Class Program
        Private Shared Sub Main(ByVal args As String())
            Dim ppt As Presentation = New Presentation()
            ppt.LoadFromFile("SmartArt.pptx")
            Dim slide As ISlide = ppt.Slides(0)
            Dim smartArt As ISmartArt = TryCast(slide.Shapes(0), ISmartArt)
            smartArt.Nodes(0).Click = New ClickHyperlink("//www.e-iceblue.com")
            smartArt.Nodes(1).Click = New ClickHyperlink(ppt.Slides(1))
            ppt.SaveToFile("Result.pptx", FileFormat.Pptx2013)
        End Sub
    End Class
End Namespace

效果图

PPT格式控件Spire.Presentation新功能演示:给 PPT中SmartArt图形的节点添加超链接

慧都是E-iceblue官方友好合作伙伴,如果您对spire.presentation感兴趣,可以了解具体授权价格和使用机制。

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP