Pin List ALCommonMeter.TALCommonMeter.OutputPins
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Latest revision as of 00:11, 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.
Class: TALCommonMeter
Contents |
Syntax
Delphi:
property OutputPins : TOWPinList read FOutputPins write FOutputPins;
C++ Builder:
__property TOWPinList OutputPins = { read=FOutputPins, write=FOutputPins };
Summary
List of Single Sample Real(double) data Output Pins.
Description
OutputPins is a list of single sample Real(double) data
output pins of the component.
You can connect each of these pins to any pin accepting single sample Real(double) data.
Delphi example:
ALVUMeter1.OutputPins[0].Connect( SLScope1.InputPins[0] );
C++ Builder example:
ALVUMeter1->OutputPins->Pins[0]->Connect( SLScope1->InputPins->Pins[0] );
Visual C++(MFC/Win32) example:
ALVUMeter1.OutputPins[0].Connect( SLScope1.InputPins[0] );
C# example:
vuMeter1.OutputPins[0].Connect( scope1.InputPins[0] );
Note Please note that unlike some other components the Scope is designed to accept single sample data, as well as buffered data, so the connection in this example will work.