Vcl.ExtActns.TDownLoadURL.Filename

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Filename: TFilename read GetFilename write SetFilename;

C++

__property System::Sysutils::TFileName Filename = {read=GetFileName, write=SetFileName};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtActns.pas
Vcl.ExtActns.hpp
Vcl.ExtActns TDownLoadURL

Description

Specifies the file to which this action copies the resource identified by the URL property.

Filename is the name of the file that TDownLoadURL creates to hold the contents of the URL specified by the URL property. When the user triggers this action, TDownLoadURL looks up URL on the internet, creates the file specified by Filename, and writes the bits it finds at URL to this file.

This value is not assigned automatically: it is the responsibility of the application to supply a value for Filename.

See Also