Property VLAVILogger.TVLAVILogger.ColorBits
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: TVLAVILogger
Contents |
Syntax
Delphi:
property ColorBits : TVLColorBits read FColorBits write SetColorBits default cbAuto;
C++ Builder:
__property TVLColorBits ColorBits = { read=FColorBits, write=SetColorBits, default=cbAuto };
Summary
Number of bits for the logging.
Description
Use this property to specify the video color bits for the
logging.
Delphi example:
VLAVILogger1.ColorBits := cb24;
C++ Builder example:
VLAVILogger1->ColorBits = cb24;
Visual C++(MFC) example:
VLAVILogger1.ColorBits = cb24;
Visual C++/CLI example:
aviLogger1->ColorBits = Mitov::VideoLab::ColorBits::cb24;
C# example:
aviLogger1.ColorBits = Mitov.VideoLab.ColorBits.cb24;
VB example:
AVILogger1.ColorBits = Mitov.VideoLab.ColorBits.cb24