Pin TLStopWatch.TTLStopWatch.OutputPin
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
(2 intermediate revisions by one user not shown) |
Latest revision as of 00:10, 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: TTLStopWatch
Contents |
Syntax
Delphi:
property OutputPin : TOWDateTimeRealSourcePin read FOutputPin write FOutputPin;
C++ Builder:
__property TOWDateTimeRealSourcePin OutputPin = { read=FOutputPin, write=FOutputPin };
Summary
The output pin of the component.
Description
OutputPin is the Date/Time output pin of the component.
You can connect this pin to any pin accepting Date/Time or Real data.
Delphi example:
<c>TLStopWatch1.OutputPin.Connect( SLGenericRealGen1.[[Pin TLStopWatch.TTLStopWatch.ClockPin|ClockPin]] );</c>
C++ Builder example:
<c>TLStopWatch1->OutputPin->Connect( SLGenericRealGen1->[[Pin TLStopWatch.TTLStopWatch.ClockPin|ClockPin]] );</c>
Visual C++(MFC/Win32) example:
<c>TLStopWatch1.OutputPin.Connect( SLGenericRealGen1.[[Pin TLStopWatch.TTLStopWatch.ClockPin|ClockPin]] );</c>
Visual C++/CLI example:
<c>stopWatch1->OutputPin->Connect( genericRealGen1.[[Pin TLStopWatch.TTLStopWatch.ClockPin|ClockPin]] );</c>
C# example:
<c>stopWatch1.OutputPin.Connect( genericRealGen1.[[Pin TLStopWatch.TTLStopWatch.ClockPin|ClockPin]] );</c>
VB example:
<c>StopWatch1.OutputPin.Connect( GenericRealGen1.[[Pin TLStopWatch.TTLStopWatch.ClockPin|ClockPin]] )</c>