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



The SampleTarget object is used to fetch single media samples from the ConvertCtrl and CaptureCtrl objects.

Object Model

SampleTarget Class

Syntax

Visual Basic (Declaration) 
Public Class SampleTarget 
   Implements IDisposable 
Visual Basic (Usage)Copy Code
Dim instance As SampleTarget
C# 
public class SampleTarget : IDisposable  
C++/CLI 
public ref class SampleTarget : public IDisposable  

Remarks

A sample target will accept samples having a specific media type. This media type is set in the MediaType object. Once the media type is set, the media type for the sample target is set by calling the SampleTarget.SetAcceptedMediaType method. To determine the accepted media type of the sample target, call the SampleTarget.GetAcceptedMediaType method. The sample target object must be set to receive samples from either a CaptureCtrl object or a ConvertCtrl object and then start either the capture or the convert process. Once that is done, the sample target can begin receiving samples. Using the GetSample method, the sample target can get delivered samples one at a time, until the end of the stream is reached. When the end of the stream is reached, the convert or capture process should be stopped. For a more detailed description of this process, refer to Implementing a SampleTarget object.

Inheritance Hierarchy

System.Object
   Leadtools.Multimedia.SampleTarget

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