Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction | Help Version 19.0.2.9
|
Leadtools.Multimedia Namespace : VideoCompressors Class |
public class VideoCompressors : Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable, System.IDisposable
'Declaration
Public Class VideoCompressors Inherits Compressors Implements System.Collections.Generic.IEnumerable(Of Compressor), System.Collections.IEnumerable, System.IDisposable
'Usage
Dim instance As VideoCompressors
public ref class VideoCompressors : public Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable, System.IDisposable
Compressor myComp = captureCtrl.VideoCompressors.H264; myComp.Selected = true;
OR obtain access directly from the control like this: captureCtrl.VideoCompressors.H264.Selected = true;
Note: You can also access other registered compressors that do not have helper property accessors by simply using the string indexer like: captureCtrl.VideoCompressors["@device:sw:{33D9A760-90C8-11D0-BD43-00A0C911CE86}\\Some Other Video Encoder"].Selected = true;