TCnPictureBox.Load(String) Method
Sets the ImageLocation to the specified URL and displays the image indicated.
public procedure Load(Url: String); overload;
Parameters
- Url
- Type: String
The path for the image to display in the TCnPictureBox .
If the url parameter indicates a local file, the recommended format is a local file path. For example, an image file named myPicture.jpglocated atc:\ would be accessed by passing c:\myPicture.jpg for the url parameter. A full path, such as http://www.xxxxxxx.com/path/images/image.jpg , or a relative path, such as ./images/image.jpg, can be used. If a relative path is used, it will be considered relative to the working directory. A call to the Load method sets the ImageLocation property to the value of url.