Property SLAverageValue.TSLAverageValue.Count

From Mitov Wiki Doc
Revision as of 00:10, 26 June 2013 by David Alm (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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>

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox