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
RectangleFThe link rectangle in page
stream
StreamThe 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
RectangleFThe link rectangle in page
filePath
stringThe sound file
Properties
FilePath
Gets or sets the external file path
public string FilePath { get; set; }
Property Value
LinkRectangle
Gets or sets the sound file link rectangle in PDF page
public RectangleF LinkRectangle { get; set; }
Property Value
SoundStream
Gets or sets the sound stream
public Stream SoundStream { get; set; }