ImageGear for .NET
ImGearARTAudio Class
Members  Example  See Also  Send Feedback
ImageGear21.Art Assembly > ImageGear.ART Namespace : ImGearARTAudio Class




Glossary Item Box

Represents ART Audio mark.

Object Model

ImGearARTAudio ClassImGearRectangle StructureImGearRectangle Structure

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Example

C#Copy Code
// Setup rectangle for the audio mark's location.
ImGearRectangle igRectangle = new ImGearRectangle(10,10,100,20);
// Create the audio mark annotation pointing to test.wav
ImGearARTAudio igARTAudio = new ImGearARTAudio(
    igRectangle, "test.wav"
);
// Add the annotation to the ARTPage.
igARTPage.AddMark(igARTAudio, ImGearARTCoordinatesType.IMAGE_COORD);
Visual BasicCopy Code
' Setup rectangle for the audio mark's location.
Dim igRectangle As New ImGearRectangle(10, 10, 100, 20)
' Create the audio mark annotation pointing to test.wav
Dim igARTAudio As New ImGearARTAudio(igRectangle, "test.wav")
' Add the annotation to the ARTPage.
igARTPage.AddMark(igARTAudio, ImGearARTCoordinatesType.IMAGE_COORD)

Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTSelection
      ImageGear.ART.ImGearARTMark
         ImageGear.ART.ImGearARTAudio

See Also

©2013. Accusoft Corporation. All Rights Reserved.