Property SLAverageValue.TSLAverageValue.Count
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 00:05, 11 June 2013
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: TSLAverageValue
Contents |
Syntax
Delphi:
property Count : Cardinal read GetCount write SetCount default 10;
C++ Builder:
__property unsigned int Count = { read=GetCount, write=SetCount, default=10 };
Summary
Specifies the number of samples to be used for the average. The Real(double) Input Pin of the filter.
Description
Use this property to specify the number of samples to be used
for the calculation of the average.
InputPin is the Real(double) data input pin of the filter.
You can connect this pin to any pin providing Real(double) data.
Delphi example:
<c>SLAverageValue1.Count := 300;</c>
C++ Builder example:
<c>SLAverageValue1->Count = 300;</c>
Visual C++(MFC/Win32) example:
<c>SLAverageValue1.Count = 300;</c>
Visual C++/CLI example:
<c>averageValue1->Count = 300;</c>
C# example:
<c>averageValue1.Count = 300;</c>
VB example:
<c>AverageValue1.Count = 300</c>