Property ALCommonMeter.TALCommonMeter.Period
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: TALCommonMeter
Contents |
Syntax
Delphi:
property Period : Cardinal read FTimePeriod write SetTimePeriodProp default 100;
C++ Builder:
__property unsigned int Period = { read=FTimePeriod, write=SetTimePeriodProp, default=100 };
Summary
Period in milliseconds between calculating values
Description
Use this property to specify the period in milliseconds
between calculating values.
Delphi example:
ALVUMeter1.Period := 200;
C++ Builder example:
ALVUMeter1->Period = 200;
Visual C++(MFC/Win32) example:
ALVUMeter1.Period = 200;
Visual C++/CLI example:
vuMeter1->Period = 200;
C# example:
vuMeter1.Period = 200;
VB example:
VUMeter1.Period = 200