Leadtools.Multimedia Namespace : AudioCompressors Class |
'Declaration Public Class AudioCompressors Inherits Compressors Implements System.Collections.Generic.IEnumerable(Of Compressor), System.Collections.IEnumerable
'Usage Dim instance As AudioCompressors
public class AudioCompressors : Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable
public ref class AudioCompressors : public Compressors, System.Collections.Generic.IEnumerable<Compressor>, System.Collections.IEnumerable
Compressor myComp = captureCtrl.AudioCompressors.AAC; myComp.Selected = true;
OR obtain access directly from the control like this: captureCtrl.AudioCompressors.AAC.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.AudioCompressors["@device:sw:{33D9A761-90C8-11D0-BD43-00A0C911CE86}\\Some Other Audio Encoder"].Selected = true;