Property VLHistogram.TVLHistogram.UpperLevel
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 UpperLevel : Word read FUpperLevel write SetUpperLevel default 255;
C++ Builder:
__property WORD UpperLevel = { read=FUpperLevel, write=SetUpperLevel, default=255 };
Summary
Upper level boundary.
Description
Use this property to specify the Upper level boundary for the
channels.
Delphi example:
VLHistogram1.UpperLevel := 200;
C++ Builder example:
VLHistogram1->UpperLevel = 200;
Visual C++(MFC) example:
VLHistogram1.UpperLevel = 200;
C# example:
histogram1.UpperLevel = 200;