Property SLBasicAnalysis.TSLBasicAnalysis.SynchronizeType
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: TSLBasicAnalysis
Contents |
Syntax
Delphi:
property SynchronizeType : TSLSynchronizeType read FSynchronizeType write SetSynchronizeType default stSingleBuffer;
C++ Builder:
__property TSLSynchronizeType SynchronizeType = { read=FSynchronizeType, write=SetSynchronizeType, default=stSingleBuffer };
Summary
Type of thread buffer synchronization.
Description
Use this property to specify the type of thread
synchronization for the Meter. The new value events can be
fired inside the processing thread ( Not suitable for UI
access.), or they can be fired in the context of the main UI
thread, so user interface items can be accessed.
Delphi example:
<c>SLLRMSMeter1.SynchronizeType := [[Enum item SLTypes.TSLSynchronizeType.stSingleBuffer|stSingleBuffer]];</c>
C++ Builder example:
<c>SLLRMSMeter1->SynchronizeType = [[Enum item SLTypes.TSLSynchronizeType.stSingleBuffer|stSingleBuffer]];</c>
Visual C++(MFC/Win32) example:
<c>SLLRMSMeter1.SynchronizeType = [[Enum item SLTypes.TSLSynchronizeType.stSingleBuffer|stSingleBuffer]];</c>
Visual C++/CLI example:
<c>rmsMeter1->SynchronizeType = Mitov::SignalLab::SynchronizeType::SingleBuffer;</c>
C# example:
<c>rmsMeter1.SynchronizeType = Mitov.SignalLab.SynchronizeType.SingleBuffer;</c>
VB example:
<c>RMSMeter1.SynchronizeType = Mitov.SignalLab.SynchronizeType.SingleBuffer</c>