SetMacroHyperlinkClick

IHyperlinkManager.SetMacroHyperlinkClick method

Establecer macro hipervínculo en un clic.

public IHyperlink SetMacroHyperlinkClick(string macroName)
ParámetroEscribeDescripción
macroNameStringNombre de la macro

Valor_devuelto

Objeto de hipervínculoIHyperlink

Ejemplos

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

Ver también