Property ALPPMMeter.TALPPMMeter.HalfLife
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: TALPPMMeter
Contents |
Syntax
Delphi:
property HalfLife : Integer read FHalfLife write SetHalfLife default 1000;
C++ Builder:
__property int HalfLife = { read=FHalfLife, write=SetHalfLife, default=1000 };
Summary
The period of the half life of the value.
Description
Use this property to specify the period of the half life of
the value in milliseconds.
Delphi example:
ALPPMMeter1.HalfLife := 2000;
C++ Builder example:
ALPPMMeter1->HalfLife = 2000;
Visual C++(MFC/Win32) example:
ALPPMMeter1.HalfLife = 2000;
C# example:
ppmMeter1.HalfLife = 2000;