Property VLIPCamera.TVLIPCamera.URL
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 02:44, 11 June 2013
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: TVLIPCamera
Contents |
Syntax
Delphi:
property URL : String read FURL write SetURL;
C++ Builder:
__property String URL = { read=FURL, write=SetURL };
Summary
Specifies the IP Camera URL.
Description
Use this property to specify the IP Camera URL.
Delphi example:
<c>VLIPCamera1.URL := 'axmphttp://212.219.113.227/mjpg/1/video.mjpg';</c>
C++ Builder example:
<c>VLIPCamera1->URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";</c>
Visual C++(MFC) example:
<c>VLIPCamera1.URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";</c>
Visual C++/CLI example:
<c>ipCamera1->URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";</c>
C# example:
<c>ipCamera1.URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg";</c>
VB example:
<c>IPCamera1.URL = "axmphttp://212.219.113.227/mjpg/1/video.mjpg"</c>