Property SLRMSMeter.TSLRMSMeter.SynchronizeType

From Mitov Wiki Doc
Jump to: navigation, search

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: TSLRMSMeter

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:

SLLRMSMeter1.SynchronizeType := stSingleBuffer;

C++ Builder example:

SLLRMSMeter1->SynchronizeType = stSingleBuffer;

Visual C++(MFC/Win32) example:

SLLRMSMeter1.SynchronizeType = stSingleBuffer;

Visual C++/CLI example:

rmsMeter1->SynchronizeType = Mitov::SignalLab::SynchronizeType::SingleBuffer;

C# example:

rmsMeter1.SynchronizeType = Mitov.SignalLab.SynchronizeType.SingleBuffer;

VB example:

RMSMeter1.SynchronizeType = Mitov.SignalLab.SynchronizeType.SingleBuffer

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox