Property VLHueVector.TVLHueVector.Mode
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: TVLHueVector
Contents |
Syntax
Delphi:
property Mode : TVLHueVectorMode read FMode write SetMode default vmCartesian;
C++ Builder:
__property TVLHueVectorMode Mode = { read=FMode, write=SetMode, default=vmCartesian };
Summary
Specifies the Hue Vector mode.
Description
Use this property to specify the Hue Vector mode.
Delphi example:
VLHueVector1.Mode := vmCartesian;
C++ Builder example:
VLHueVector1->Mode = vmCartesian;
Visual C++(MFC) example:
VLHueVector1.Mode = vmCartesian;
Visual C++/CLI example:
hueVector1->Mode = Mitov::VideoLab::HueVectorMode::Cartesian;
C# example:
hueVector1.Mode = Mitov.VideoLab.HueVectorMode.Cartesian;
VB example:
HueVector1.Mode = Mitov.VideoLab.HueVectorMode.Cartesian