Property VLHistogram.TVLHistogram.ColorMode
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: TVLHistogram
Contents |
Syntax
Delphi:
property ColorMode : TVLColorMode read FColorMode write SetColorMode default cmRGB;
C++ Builder:
__property TVLColorMode ColorMode = { read=FColorMode, write=SetColorMode, default=cmRGB };
Summary
The Color Space to be used.
Description
Use this property to specify the Color Space mode to be used.
Delphi example:
VLHistogram1.ColorMode := cmRGB;
C++ Builder example:
VLHistogram1->ColorMode = cmRGB;
Visual C++(MFC) example:
VLHistogram1.ColorMode = cmRGB;
Visual C++/CLI example:
histogram1->ColorMode = Mitov::VideoLab::ColorMode::RGB;
C# example:
histogram1.ColorMode = Mitov.VideoLab.ColorMode.RGB;
VB example:
Histogram1.ColorMode = Mitov.VideoLab.ColorMode.RGB