SetMacroHyperlinkClick

IHyperlinkManager.SetMacroHyperlinkClick method

单击设置宏超链接。

public IHyperlink SetMacroHyperlinkClick(string macroName)
范围类型描述
macroNameString宏名称

返回值

超链接对象IHyperlink

例子

[C#]
using (Presentation presentation = new Presentation())
{
    IAutoShape shape = presentation.Slides[0].Shapes.AddAutoShape(ShapeType.BlankButton, 20, 20, 80, 30);
    shape.HyperlinkManager.SetMacroHyperlinkClick("MacroName");
}

也可以看看