menu

Document Processing

PdfSoundIcon Class - C# PDF Library API Reference | Syncfusion

    Show / Hide Table of Contents

    PdfSoundIcon Class

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

    Inheritance
    System.Object
    PdfSoundIcon
    Namespace: Syncfusion.Pdf.Interactive
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public sealed class PdfSoundIcon : Enum
    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

    Mic

    Microphone icon of sound link.

    Declaration
    public const PdfSoundIcon Mic
    Field Value
    Type
    PdfSoundIcon

    Speaker

    Speaker icon of sound link.

    Declaration
    public const PdfSoundIcon Speaker
    Field Value
    Type
    PdfSoundIcon
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved