Leadtools.Annotations Namespace : AnnVideoObject Class |
[SerializableAttribute()] public class AnnVideoObject : AnnImageObject, IAnnPictureObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Declaration <SerializableAttribute()> Public Class AnnVideoObject Inherits AnnImageObject Implements IAnnPictureObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Usage Dim instance As AnnVideoObject
public sealed class AnnVideoObject : IAnnPictureObject, System.ICloneable, IClosable //In WinRT the IDisposable interface is replaced by IClosable, ~Remove~
function Leadtools.Annotations.AnnVideoObject()
[SerializableAttribute()] public ref class AnnVideoObject : public AnnImageObject, IAnnPictureObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
The video annotation object is a scaled image that can be activated to play a video clip. The video file path is stored in the FileName property, so the video data itself is not stored in this object, only the physical path. In run mode, when this video object is clicked, the framework will try to locate and then play the video file stored in FileName. This object will use the default image of a video icon. To change this default image, change the Picture value.
The AnnVideoObject class inherits the the AnnImageObject class and accesses the common Picture property mentioned above through this inheritance.
LEADTOOLS Annotations uses the LEADTOOLS Multimedia for .NET toolkit to render video files and Leadtools.Multimedia must be present on the machine. For more information, refer to Introduction to LEADTOOLS Multimedia for .NET.
For more information about the video annotation object refer to AnnVideoObject.
For more information about the automated annotation video object, refer to Annotation Objects - Automated Features and Automated Annotations - Video Tab.
Private Sub AnnVideoObject_AnnVideoObject(ByVal container As AnnContainer, ByVal videoFileName As String) Dim video As New AnnVideoObject() video.Bounds = New AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel) video.FileName = videoFileName container.Objects.Add(video) End Sub
private void AnnVideoObject_AnnVideoObject(AnnContainer container, string videoFileName) { AnnVideoObject video = new AnnVideoObject(); video.Bounds = new AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel); video.FileName = videoFileName; container.Objects.Add(video); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2