Property VLVirtualDub.TVLVirtualDub.Opened
From Mitov Wiki Doc
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: TVLVirtualDub
Contents |
Syntax
Delphi:
property Opened : Boolean read GetOpened;
C++ Builder:
__property bool Opened = { read=GetOpened };
Summary
Returns True if the filter is opened.
Description
Controls whether or not the filter is opened.
Delphi example:
var AValue : Boolean; AValue := VLVirtualDub1.Opened;
C++ Builder example:
bool AValue = VLVirtualDub1->Opened;
Visual C++(MFC/Win32) example:
bool AValue = VLVirtualDub1.Opened;
Visual C++/CLI example:
bool AValue = virtualDub1->Opened;
C# example:
bool AValue = virtualDub1.Opened;
VB example:
Dim AValue As Boolean = VirtualDub1.Opened