Method procedure VLCommonFilter.TVLGenerator.Pump()
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: TVLGenerator
Contents |
Syntax
Delphi:
procedure Pump();
C++ Builder:
void __fastcall Pump();
Visual C++ (MFC):
void Pump();
Summary
Plays one buffer if enabled, the input pin is not connected, and ClockSource is csExternal.
Description
Use the Pump procedure to play a single frame. In order to use Pump you must set the ClockSource to csExternal. If there is a higher level pump in the chain such as hardware device the Pump procedure will be ignored. The highest level pump in the chain serves as a master pump and obtains full control of the pumping.
Delphi example:
<c>VLFilre1.Generator.Pump;</c>
C++ Builder example:
<c>VLFilre1->Generator->Pump();</c>
Visual C++(MFC) example:
<c>VLFilre1.Generator.Pump();</c>
Visual C++/CLI example:
<c>fire1->Generator->Pump();</c>
C# example:
<c>fire1.Generator.Pump();</c>
VB example:
<c>Fire1.Generator.Pump</c>