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