Description
Specify the number of times skipped between
accepted samples when FilterType is set to Skip Count. In other
words, skip count of 1 which is now the smallest accepted value is
interpreted as taking every other samples, skip count of 2 means
taking a sample, then skipping two consecutive samples and then
taking another sample, etc.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
Public Property Count() As Integer
|
[C#] |
public int Count {get; set;}
|
[Managed C++] |
public: __property int get_Count();
public: __property void set_Count(
int
);
|
[Unmanaged C++] |
public: HRESULT get_Count(
int * pRetVal
);
public: HRESULT put_Count(
int NewCount
);
|
[Java] |
public ppInteger getCount();public void setCount(
ppInteger
);
|
See Also