VideoSubChannelCount Property

Summary
Gets the video subchannel count for a multifunction tuner.
Syntax
C#
C++/CLI
public int VideoSubChannelCount { get; } 
public: 
property int VideoSubChannelCount { 
   int get(); 
} 

Property Value

A value representing the video subchannel count.

Remarks

Gets the video subchannel count for a multifunction tuner. This property is valid only for ATSC digital TV broadcasts.

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public CaptureCtrlForm _form = new CaptureCtrlForm(); 
 
public void AudioSubChannelCountExample() 
{ 
   // reference the forms capture control and tv tuner 
   CaptureCtrl capturectrl = _form.CaptureCtrl; 
 
   try 
   { 
      // select the first device with digital in it's name 
      // Replace "Digital" with your video capture device name 
      if (capturectrl.VideoDevices["Digital"] == null) 
         throw new Exception("No Digital video devices available!"); 
 
      capturectrl.VideoDevices["Digital"].Selected = true; 
 
      // get the TV Tuner device 
      TVTuner tvtuner = capturectrl.TVTuner; 
 
      // check whether the TV tuner is valid 
      if (tvtuner != null) 
      { 
         // try to set the channel and check the subchannel countss 
         tvtuner.SetChannel(101, -1, -1); 
         int videoSubChannelCount = tvtuner.VideoSubChannelCount; 
         int audioSubChannelCount = tvtuner.AudioSubChannelCount; 
 
         // 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.Multimedia Assembly

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