LEADTOOLS Multimedia (Leadtools.Multimedia assembly) Send comments on this topic. | Back to Introduction | Help Version 17.0.3.22
VideoProcessors Class
See Also  Members  
Leadtools.Multimedia Namespace : VideoProcessors Class



The VideoProcessors object contains a collection of registered video processors.

Object Model

VideoProcessors ClassProcessor Class

Syntax

Visual Basic (Declaration) 
Public Class VideoProcessors 
   Inherits Processors
   Implements ICollection(Of Processor)IEnumerable(Of Processor)IList(Of Processor)IEnumerableIEnumerator 
Visual Basic (Usage)Copy Code
Dim instance As VideoProcessors
C++/CLI 
public ref class VideoProcessors : public Processors, ICollection<Processor>IEnumerable<Processor>IList<Processor>IEnumerableIEnumerator  

Remarks

The PlayCtrl, CaptureCtrl and ConvertCtrl objects use this collection to enumerate and select video processors. An VideoProcessors object is not externally creatable and is only obtained through the parent object properties: PlayCtrl.VideoProcessors, PlayCtrl.SelectedVideoProcessors, CaptureCtrl.VideoProcessors, CaptureCtrl.SelectedVideoProcessors, CaptureCtrl.PreviewVideoProcessors, ConvertCtrl.VideoProcessors and ConvertCtrl.SelectedVideoProcessors. This collection object is derived from the general Processors object collection base class. The VideoProcessors collection object also provides helper properties which can be used to access a particular video processor for selection and use. For example, you could add the EFXDizzy video processor to the play control's selected video processors by doing the following: playCtrl.SelectedVideoProcessors.Add(playCtrl.VideoProcessors.EFXDizzy); Note: You can also access other registered processors that do not have helper property accessors by simply using the string indexer like: Processor myProc = playCtrl.VideoProcessors["@device:sw:{5FFE757A-509A-477E-A1F1-68812010A6DD}\{my registered processor guid}"]; To register your own processor, see Processors.RegisterExternalProcessor.

Inheritance Hierarchy

System.Object
   Leadtools.Multimedia.Processors
      Leadtools.Multimedia.VideoProcessors

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also