public TunerModeType Mode { get; set; } public:property TunerModeType Mode {TunerModeType get();void set ( TunerModeType );}
A TunerModeType enumeration value indicating the current mode. To determine the modes available on the installed tuner, use the AvailableModes property. For more detailed information, refer to the Microsoft documentation for IAMTuner.get_Mode.
Gets or sets the current mode of a multifunction tuner.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void AvailableModesExample(){// reference the forms capture control and tv tunerCaptureCtrl capturectrl = _form.CaptureCtrl;try{// select the first device with analog in it's name// Replace "Analog" with your video capture device nameif (capturectrl.VideoDevices["Analog"] == null)throw new Exception("No Analog video devices available!");capturectrl.VideoDevices["Analog"].Selected = true;// get the TV Tuner deviceTVTuner tvtuner = capturectrl.TVTuner;// check whether the TV tuner is validif (tvtuner != null){// check the available modesTunerModeType modes = tvtuner.AvailableModes;bool analogTV = ((modes & TunerModeType.TV) == TunerModeType.TV);bool digitalTV = ((modes & TunerModeType.DigitalTV) == TunerModeType.DigitalTV);// set the result_result = true;}}catch (Exception){_result = false;}// we'll loop on the state and pump messages for this example.// but you should not need to if running from a Windows Forms application.while (capturectrl.State == CaptureState.Running)Application.DoEvents();}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
