Property VLHistogram.TVLHistogram.ColorMode
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' ColorMode : TVLColorMode '''read''' FColorMode '''write''' SetColorMode; | + | '''property''' ColorMode : TVLColorMode '''read''' FColorMode '''write''' SetColorMode '''default''' [[Enum item VLTypes.TVLColorMode.cmRGB|cmRGB]]; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' TVLColorMode ColorMode = { '''read'''=FColorMode, '''write'''=SetColorMode }; | + | '''__property''' TVLColorMode ColorMode = { '''read'''=FColorMode, '''write'''=SetColorMode, '''default'''=[[Enum item VLTypes.TVLColorMode.cmRGB|cmRGB]] }; |
</code> | </code> | ||
Latest revision as of 17:19, 18 October 2012
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