Class SLGenericRealGen.TSLGenericRealGen
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 00:11, 11 October 2012
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: SignalLabBasicPkg
Unit: SLGenericRealGen
Inherits: TSLCommonRealGen
Contents |
Syntax
Delphi:
type TSLGenericRealGen = class( TSLCommonRealGen )
C++ Builder:
class TSLGenericRealGen : public TSLCommonRealGen
Visual C++ (MFC):
class CTSLGenericRealGen : public CTSLCommonRealGen
C# (.NET):
public ref class TSLGenericRealGen : Mitov.SignalLab.CommonRealGen
Summary
User defined generator for Real data.
Description
Allows implementation of custom user defined Real(double) data signal generators.
Implement the user defined generator inside the OnGenerate event handler.
Events
- OnGenerate - Occurs when a new buffer of data is generated.
From TSLCommonRealGen
Pins
- OutputPin - The Real(double) output pin of the generator.
From TSLCommonBufferGen
Properties
Published
- BufferSize - Specifies the desired buffer size for the generator.
Events
- OnStart - Occurs when the data pumping starts.
From TSLCommonGen
Properties
Published
- SampleRate - Specifies the sample rate for the generator.
From TSLBasicCommonGen
Properties
Published
- Enabled - Enables/Disables the generator.
- PumpPriority - Specifies the priority of the component as a pump.
- ClockSource - Specifies the clock source - internal or external.
Methods
Public
- procedure Pump() - Generates one buffer if enabled and ClockSource is csExternal.
- procedure Start() - Starts the generator.
- procedure Stop() - Stops the generator.
Pins
Events
- OnStop - Occurs when the data pumping stops.