Property VLAxisCapture.TVLAxisCapture.URL
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:
property URL : String read FURL write SetURL;
C++ Builder:
__property String URL = { read=FURL, write=SetURL };
Summary
Specifies the Axis camera URL.
Description
Use this property to specify the Axis camera URL.
Delphi example:
VLAxisCapture1.URL := 'axmphttp://212.219.113.227/mjpg/1/video.mjpg';
C++ Builder example:
VLAxisCapture1->URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";
Visual C++(MFC) example:
VLAxisCapture1.URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";
Visual C++/CLI example:
axisCapture1->URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";
C# example:
axisCapture1.URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";
VB example:
AxisCapture1.URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg"