Method function VLDSCapture.TVLDSTVTuner.AutoTuneChannel(Integer) : TVLDSTVSignal
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLDSTVTuner
Contents |
Syntax
Delphi:
function AutoTuneChannel( AChannelNumber : Integer ) : TVLDSTVSignal;
C++ Builder:
TVLDSTVSignal __fastcall AutoTuneChannel( int AChannelNumber );
Visual C++ (MFC):
CTVLDSTVSignal AutoTuneChannel( int AChannelNumber );
Summary
Scans for a precise signal on the channel's frequency.
Description
Call this method to scan for a precise signal on the channel's frequency.
Delphi example:
VLDSCapture1.TVTuner.AutoTuneChannel(63);
C++ Builder example:
VLDSCapture1->TVTuner->AutoTuneChannel(63);
Visual C++(MFC) example:
VLDSCapture1.TVTuner.AutoTuneChannel(63);
Visual C++/CLI example:
dsCapture1->TVTuner->AutoTuneChannel(63);
C# example:
dsCapture1.TVTuner.AutoTuneChannel(63);
VB example:
DSCapture1.TVTuner.AutoTuneChannel(63)