Leadtools.Multimedia Namespace : VideoCompressors Class |
'Declaration Public Class VideoCompressors Inherits Compressors Implements System.Collections.Generic.IEnumerable(Of Compressor), System.Collections.IEnumerable
'Usage Dim instance As VideoCompressors
public class VideoCompressors : Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable
public ref class VideoCompressors : public Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable
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;