Pin SLSnippetTrigger.TSLSnippetTrigger.TriggerOutputPin
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
(One intermediate revision by one user not shown) |
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: TSLSnippetTrigger
Contents |
Syntax
Delphi:
property TriggerOutputPin : TOWSLTriggerSourcePin read FTriggerOutputPin write FTriggerOutputPin;
C++ Builder:
__property TOWSLTriggerSourcePin * TriggerOutputPin = { read=FTriggerOutputPin, write=FTriggerOutputPin };
Summary
The external triggering output pin of the component.
Description
TriggerOutputPin is the external triggering output pin of the
component.
You can connect this pin to any pin accepting triggering data.
Delphi example:
<c>SLSnippetTrigger1.[[Pin SLSnippetTrigger.TSLSnippetTrigger.TriggerInputPin|TriggerInputPin]].Connect( SLSnippetTrigger2.TriggerOutputPin );</c>
C++ Builder example:
<c>SLSnippetTrigger1->[[Pin SLSnippetTrigger.TSLSnippetTrigger.TriggerInputPin|TriggerInputPin]]->Connect( SLSnippetTrigger2->TriggerOutputPin );</c>
Visual C++(MFC/Win32) example:
<c>SLSnippetTrigger1.[[Pin SLSnippetTrigger.TSLSnippetTrigger.TriggerInputPin|TriggerInputPin]].Connect( SLSnippetTrigger2.TriggerOutputPin );</c>
C# example:
<c>snippetTrigger1.[[Pin SLSnippetTrigger.TSLSnippetTrigger.TriggerInputPin|TriggerInputPin]].Connect( snippetTrigger2.TriggerOutputPin );</c>