Pin List VLQueuedSwitch.TVLQueuedSwitch.InputPins
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 02:45, 11 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: TVLQueuedSwitch
Contents |
Syntax
Delphi:
property InputPins : TOWPinList read FInputPins write FInputPins;
C++ Builder:
__property TOWPinList InputPins = { read=FInputPins, write=FInputPins };
Summary
The Video Input Pins for the switch.
Description
List of audio input pins associated with the queued input
channels.
Use this property to connect the Inputs of the TVLQueuedSwitch component to the data sources for the operation.
Adding queued channels will add new pins to the list.
Delphi example:
VLQueuedSwitch1.InputPins[0].Connect( VLAVIPlayer1.OutputPin ); VLQueuedSwitch1.InputPins[1].Connect( VLAVIPlayer2.OutputPin );
C++ Builder example:
VLQueuedSwitch1->InputPins->Pins[0]->Connect( VLAVIPlayer1->OutputPin ); VLQueuedSwitch1->InputPins->Pins[1]->Connect( VLAVIPlayer2->OutputPin );
Visual C++(MFC) example:
VLQueuedSwitch1.InputPins[0].Connect( VLAVIPlayer1.OutputPin ); VLQueuedSwitch1.InputPins[1].Connect( VLAVIPlayer2.OutputPin );
Visual C++/CLI example:
queuedSwitch1->InputPins[0]->Connect( aviPlayer1->OutputPin ); queuedSwitch1->InputPins[1]->Connect( aviPlayer2->OutputPin );
C# example:
queuedSwitch1.InputPins[0].Connect( aviPlayer1.OutputPin ); queuedSwitch1.InputPins[1].Connect( aviPlayer2.OutputPin );
VB example:
QueuedSwitch1.InputPins(0).Connect( AVIPlayer1.OutputPin ); QueuedSwitch1.InputPins(1).Connect( AVIPlayer2.OutputPin );