Method procedure VLCapture.TVLCapture.Open()
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: TVLCapture
Contents |
Syntax
Delphi:
procedure Open();
C++ Builder:
void __fastcall Open();
Visual C++ (MFC):
void Open();
Summary
Opens the video capture device and prepares it for capture.
Description
Call this method if you want to prepare the device for capture. Once the device is ready starting the capture is almost instantaneous. If the device is closed, starting the device first will open it.
Delphi example:
VLCapture1.Open;
C++ Builder example:
VLCapture1->Open();
Visual C++(MFC) example:
VLCapture1.Open();
Visual C++/CLI example:
capture1->Open();
C# Example:
capture1.Open();
VB Example:
Capture1.Open