Table of Contents

Class SoundLinkElement

Namespace
EvoPdf
Assembly
evohtmltopdf.dll

Represents a link to a sound file in PDF

[ClassInterface(ClassInterfaceType.AutoDual)]
public class SoundLinkElement : PageElement
Inheritance
SoundLinkElement
Inherited Members

Constructors

SoundLinkElement(RectangleF, Stream)

Constructs a sound link element at the given location in PDF page and using the given sound stream

public SoundLinkElement(RectangleF linkRectangle, Stream stream)

Parameters

linkRectangle RectangleF

The link rectangle in page

stream Stream

The sound stream

SoundLinkElement(RectangleF, string)

Constructs a sound link element at the given location in PDF page and using the given sound file

public SoundLinkElement(RectangleF linkRectangle, string filePath)

Parameters

linkRectangle RectangleF

The link rectangle in page

filePath string

The sound file

Properties

FilePath

Gets or sets the external file path

public string FilePath { get; set; }

Property Value

string

LinkRectangle

Gets or sets the sound file link rectangle in PDF page

public RectangleF LinkRectangle { get; set; }

Property Value

RectangleF

SoundStream

Gets or sets the sound stream

public Stream SoundStream { get; set; }

Property Value

Stream