Method procedure VLAxisCapture.TVLAxisCapture.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: TVLAxisCapture
Contents |
Syntax
Delphi:
procedure Open();
C++ Builder:
void __fastcall Open();
Visual C++ (MFC):
void Open();
Summary
Opens the Axis connection and prepares it for capture.
Description
Call this method if you want to prepare the Axis connection 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:
VLAxisCapture1.Open;
C++ Builder example:
VLAxisCapture1->Open();
Visual C++(MFC/Win32 API) example:
VLAxisCapture1.Open();
Visual C++/CLI example:
axisCapture1->Open();
C# Example:
axisCapture1.Open();
VB Example:
AxisCapture1.Open