Mode Property

Summary
Gets or sets the current mode of a multifunction tuner.
Syntax
C#
C++/CLI
public TunerModeType Mode { get; set; } 
public: 
property TunerModeType Mode { 
   TunerModeType get(); 
   void set (    TunerModeType ); 
} 

Property Value

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.

Remarks

Gets or sets the current mode of a multifunction tuner.

Example
C#
using Leadtools; 
using Leadtools.MediaFoundation; 
using LeadtoolsMediaFoundationExamples.Fixtures; 
 
 
public bool _result = false; 
public CaptureCtrlForm _form = new CaptureCtrlForm(); 
 
public void AvailableModesExample() 
{ 
   // reference the forms capture control and tv tuner 
   CaptureCtrl capturectrl = _form.CaptureCtrl; 
 
   try 
   { 
      // select the first device with analog in it's name 
      // Replace "Analog" with your video capture device name 
      if (capturectrl.VideoDevices["Analog"] == null) 
         throw new Exception("No Analog video devices available!"); 
 
      capturectrl.VideoDevices["Analog"].Selected = true; 
 
      // get the TV Tuner device 
      TVTuner tvtuner = capturectrl.TVTuner; 
 
      // Check if TV tuner is valid 
      if (tvtuner != null) 
      { 
         // check the available modes 
         TunerModeType 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(); 
} 
Requirements

Target Platforms

See Also

Reference

TVTuner Class

TVTuner Members

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.MediaFoundation Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.