Property DSGraphProperty.TDSPin.Pin
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Pin : IPin '''read''' GetPin; | + | '''property''' Pin : IPin '''read''' [[Method function DSGraphProperty.TDSPin.GetPin() : IPin|GetPin]]; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' IPin Pin = { '''read'''=GetPin }; | + | '''__property''' IPin Pin = { '''read'''=[[Method function DSGraphProperty.TDSPin.GetPin() : IPin|GetPin]] }; |
</code> | </code> | ||
Latest revision as of 17:19, 18 October 2012
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: TDSPin
Contents |
Syntax
Delphi:
property Pin : IPin read GetPin;
C++ Builder:
__property IPin Pin = { read=GetPin };
Summary
IPin interface of the DirectShow pin.
Description
Allows access the the IPin interface of the pin. This
property is reserved for advanced developers familiar with
DirectShow.