This property sets the name of the image file (full path) to be loaded or saved

[C++Builder]   imagekitcontrolname->FileIO->FileName[ = UnicodeString ]
[Delphi]   imagekitcontrolname.FileIO.FileName[ = string ]

Property Value

The name of the image file (full path)

Explanation

The FileName property sets the name of the image file to be loaded or saved.

(1) Files loaded from local drive or network drive:
     VImageKit1.FileIO.FileName := 'c:\abc.jpg';
     VImageKit1.FileIO.LoadFile(vikLoad);

(2) Files loaded FTP server:
     VImageKit1.FileIO.FileName := 'ftp://www.newtone.co.jp/image/abc.jpg;;;true;user;password'; //(*)
     VImageKit1.FileIO.LoadFile(vikLoad);

(*) Setting order for values:
     FTP://ServerName/FolderName/FileName;ProxyName;PortNumber;PassiveMode;UserName;Password

When setting or changing the proxy server, the port number, and passive (PASV) mode connection, please be sure to pass in this information seperated by semicolons. Set the FTP server name or IP address, the proxy server name or IP address, the port number, passive mode connection, etc. If the port number is omitted, the default port number will be used. Passive mode connection can be either "true" or "false" in upper case or lower case letters. If omitted, passive mode connection will be used.

(3) Files loaded HTTP(S) server:
     VImageKit1.FileIO.FileName := 'http://www.newtone.co.jp/image/abc.jpg;;;;user;password'; //(**)
     ImageKit1.File.LoadFile ikLoad

(**) Setting order for values:
     HTTP://ServerName/FolderName/FileName;ProxyName;PortNumber;HTTPS;UserName;Password

When setting or changing the proxy server, the port number, or using HTTPS, please be sure to pass in this information seperated by semicolons. Set the HTTP(S) server name or IP address, the proxy server name or IP address, the port number, HTTPS, etc. If the port number is omitted, the defaul port number will be used. IF HTTPS is omitted then HTTP server will be used.

Setting this value

This value can be set at run-time.

Retrieving this value

This value can be retrieved at run-time.

 

The ImageKit10 VCL is a product created by Newtone Corporation