WPF

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Enum PdfSoundIcon

    Show / Hide Table of Contents

    Enum PdfSoundIcon

    Specifies the name of an icon to be used in displaying the sound annotation.

    Namespace: Syncfusion.Pdf.Interactive
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public enum PdfSoundIcon
    Examples
    //Create a new PDF document.
    PdfDocument document = new PdfDocument();
    //Create a new page.
    PdfPage page = document.Pages.Add();
    //Create a new rectangle
    RectangleF rectangle = new RectangleF(10, 40, 30, 30);
    //Create a new sound annotation.
    PdfSoundAnnotation soundAnnotation = new PdfSoundAnnotation(rectangle, @"Input.wav");
    //Sets the sound icon
    soundAnnotation.Icon = PdfSoundIcon.Speaker;
    //Add this annotation to a new page.
    page.Annotations.Add(soundAnnotation);
    //Save the  document to disk.
    document.Save("Output.pdf");
    //close the document
    document.Close(true); 
    'Create a new PDF document.
    Dim document As New PdfDocument()
    'Create a new page.
    Dim page As PdfPage = document.Pages.Add()
    'Create a new rectangle
    Dim rectangle As New RectangleF(10, 40, 30, 30)
    'Create a new sound annotation.
    Dim soundAnnotation As New PdfSoundAnnotation(rectangle, "Input.wav")
    'Sets the sound icon
    soundAnnotation.Icon = PdfSoundIcon.Speaker
    'Add this annotation to a new page.
    page.Annotations.Add(soundAnnotation)
    'Save the  document to disk.
    document.Save("Output.pdf")
    'close the document
    document.Close(True)

    Fields

    Name Description
    Mic

    Microphone icon of sound link.

    Speaker

    Speaker icon of sound link.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved