Type SLGenericRealValueGen.TSLRealValueGenEvent
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.
Package: SignalLabAdditionalPkg
Unit: SLGenericRealValueGen
Contents |
Syntax
Delphi:
type procedure TSLRealValueGenEvent( Sender : TObject, var OutValue : Real, var Populated : Boolean, var Finished : Boolean ) of object;
C++ Builder:
typedef void __fastcall (__closure *TSLRealValueGenEvent)( TObject * Sender, double &OutValue, bool &Populated, bool &Finished );
Summary
Event type to be used by the TSLGenericRealValueGen.
Description
Defines a callback event to be used by the TSLGenericRealValueGen . To provide data populate the OutValue. To force the generator to ignore the data request, set the Finished to False. If you decide not to populate the value set the Populated to False. In this case the output will not be changed.