Method procedure ALBasicGenericFilter.TALBasicGenericFilter.SendPauseCommand()
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: TALBasicGenericFilter
Contents |
Syntax
Delphi:
procedure SendPauseCommand();
C++ Builder:
void __fastcall SendPauseCommand();
Visual C++ (MFC):
void SendPauseCommand();
Summary
Sends full pause command trough the output pin.
Description
By calling this method you can generate a pause command from inside TALGenericFilter.
Use this method together with SendData and SendStartCommand to do manual data pumping.
Delphi example:
<c>ALGenericFilter1.SendPauseCommand;</c>
C++ Builder example:
<c>ALGenericFilter1->SendPauseCommand();</c>
Visual C++(MFC) example:
<c>ALGenericFilter1.SendPauseCommand();</c>
Visual C++/CLI example:
<c>genericFilter1->SendPauseCommand();</c>
C# example:
<c>genericFilter1.SendPauseCommand();</c>
VB example:
<c>GenericFilter1.SendPauseCommand</c>