Property VLDSCapture.TVLDSTVTuner.UseCurrent
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 UseCurrent : Boolean read FUseCurrent write FUseCurrent default True;
C++ Builder:
__property bool UseCurrent = { read=FUseCurrent, write=FUseCurrent, default=True };
Summary
Use the current settings(Do not change the device).
Description
Use this property to specify that the current device settings
should be used.
If this sub property property is set to True the component will use the current settings for the TV Tuner. All other settings in the TVLDSTVTuner property will be ignored.
Delphi example:
VLDSCapture1.TVTuner.UseCurrent := True;
C++ Builder example:
VLDSCapture1->TVTuner->UseCurrent = true;
Visual C++(MFC) example:
VLDSCapture1.TVTuner.UseCurrent = true;
Visual C++/CLI example:
dsCapture1->TVTuner->UseCurrent = true;
C# example:
dsCapture1.TVTuner.UseCurrent = true;
VB example:
DSCapture1.TVTuner.UseCurrent = True