Property VLColorsToReal.TVLColorsToReal.ScanMode
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: TVLColorsToReal
Contents |
Syntax
Delphi:
property ScanMode : TVLScanMode read FScanMode write SetScanMode default smLine;
C++ Builder:
__property TVLScanMode ScanMode = { read=FScanMode, write=SetScanMode, default=smLine };
Summary
The Scan Mode to be used.
Description
Use this property to specify the scan mode for the component
- Scanning a whole frame or a single line from a frame at a
time.
Delphi example:
VLColorsToReal1.ScanMode := smLine;
C++ Builder example:
VLColorsToReal1->ScanMode = smLine;
Visual C++(MFC) example:
VLColorsToReal1.ScanMode = smLine;
Visual C++/CLI example:
colorsToReal1->ScanMode = Mitov::VideoLab::ScanMode::Line;
C# example:
colorsToReal1.ScanMode = Mitov.VideoLab.ScanMode.Line;
VB example:
ColorsToReal1.ScanMode = Mitov.VideoLab.ScanMode.Line