Class SLWaterfall.TSLWaterfallData
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(3 intermediate revisions by one user not shown) | |||
Line 26: | Line 26: | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' | + | '''public ref class''' WaterfallData : [[Class SLWaterfall.TSLBasicWaterfallData|Mitov.PlotLab.BasicWaterfallData]] |
</code> | </code> | ||
== Summary == | == Summary == |
Latest revision as of 00:30, 26 June 2013
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: SignalLabScopePkg
Unit: SLWaterfall
Inherits: TSLBasicWaterfallData
Contents |
Syntax
Delphi:
type TSLWaterfallData = class( TSLBasicWaterfallData )
C++ Builder:
class TSLWaterfallData : public TSLBasicWaterfallData
Visual C++ (MFC):
class CTSLWaterfallData : public CTSLBasicWaterfallData
C# (.NET):
public ref class WaterfallData : Mitov.PlotLab.BasicWaterfallData
Summary
Defines waterfall data class.
Description
This class is used by the waterfall to provide access to the waterfall data. Do not make instances of this class.
Methods
Public
- procedure Clear() - Clears the Waterfall data.
From TSLBasicWaterfallData
Properties
Public
- SampleRate - The sample data rate.
Methods
Public
- procedure AddData(ABuffer : PWord; ASize : Integer) - Adds new unsigned short (Word) data buffer to the waterfall.
- procedure AddData(ABuffer : PSmallInt; ASize : Integer) - Adds new short (SmallInt) data buffer to the waterfall.
- procedure AddData(ABuffer : PCardinal; ASize : Integer) - Adds new unsigned integer (Cardinal) data buffer to the waterfall.
- procedure AddData(ABuffer : PUInt64; ASize : Integer) - Adds new 64 bit unsigned integer data buffer to the waterfall.
- procedure AddData(ABuffer : PInteger; ASize : Integer) - Adds new Integer data buffer to the waterfall.
- procedure AddData(ABuffer : PInt64; ASize : Integer) - Adds new 64 bit integer data buffer to the waterfall.
- procedure AddData(ABuffer : PSingle; ASize : Integer) - Adds new Single(float) data buffer to the waterfall.
- procedure AddData(ABuffer : PReal; ASize : Integer) - Adds new Real(double) data buffer to the waterfall.
- procedure AddData(ABuffer : ISLRealBuffer) - Adds new Real(double) data buffer to the waterfall.
- procedure AddData(ABuffer : ISLIntegerBuffer) - Adds new Integer data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PWord; ASize : Integer) - Sets unsigned short (Word) data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PSmallInt; ASize : Integer) - Sets short (SmallInt) data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PCardinal; ASize : Integer) - Sets unsigned integer (Cardinal) data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PUInt64; ASize : Integer) - Sets 64 bit unsigned integer data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PInteger; ASize : Integer) - Sets integer data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PInt64; ASize : Integer) - Sets 64 bit integer data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PSingle; ASize : Integer) - Sets Single(float) data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : PReal; ASize : Integer) - Sets Real(double) data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : ISLRealBuffer) - Sets Real(double) data buffer to the waterfall.
- procedure SetData(AIndex : Cardinal; ABuffer : ISLIntegerBuffer) - Sets integer data buffer to the waterfall.
- procedure SetData(ABuffer : ISLRealBufferArray) - Sets real buffer array data to the waterfall.
- function GetData() : TSLRealBufferArray - Returns the data buffers.
- function GetDrawData() : TSLRealBufferArray - Returns the currently displayed data buffers.
- procedure Clear() - Clears the data buffers.