Property VLDSCapture.TVLDSTVTuner.Mode
From Mitov Wiki Doc
(Difference between revisions)
Latest revision as of 00:18, 22 November 2011
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:
property Mode : TVLDSTVMode read GetMode write SetMode;
C++ Builder:
__property TVLDSTVMode Mode = { read=GetMode, write=SetMode };
Summary
Specifies the TV Tuner mode (TV, FM Radio, AM Radio or Satellite ).
Description
Use this property to specify the TV Tuner mode (TV, FM Radio,
AM Radio or Satellite ).
Delphi example:
VLDSCapture1.TVTuner.Mode := tvmTV;
C++ Builder example:
VLDSCapture1->TVTuner->Mode = tvmTV;
Visual C++(MFC) example:
VLDSCapture1.TVTuner.Mode = tvmTV;
Visual C++/CLI example:
dsCapture1->TVTuner->Mode = Mitov::VideoLab::DSTVMode::TV;
C# example:
dsCapture1.TVTuner.Mode = Mitov.VideoLab.DSTVMode.TV;
VB example:
DSCapture1.TVTuner.Mode = Mitov.VideoLab.DSTVMode.TV