Vcl.ExtActns.TDownLoadURL

From RAD Studio API Documentation
Jump to: navigation, search

Vcl.ExtActns.TURLActionVcl.ActnList.TCustomActionSystem.Actions.TContainedActionSystem.Classes.TBasicActionSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTDownLoadURL

Delphi

TDownLoadURL = class(TURLAction , IBindStatusCallback)

C++

class PASCALIMPLEMENTATION TDownLoadURL : public TURLAction

Properties

Type Visibility Source Unit Parent
class public
Vcl.ExtActns.pas
Vcl.ExtActns.hpp
Vcl.ExtActns Vcl.ExtActns

Description

TDownLoadURL is the standard action for saving the contents of a specified URL to a file.

Add TDownLoadURL to an action manager or action list to let your application save the contents of a specified URL to a file. Controls linked to this action cause the application to lookup the resource specified by the URL property and save it to the file specified by the Filename property. While TDownLoadURL is writing to the specified file, it periodically generates an OnDownloadProgress event, so that you can provide users with feedback about the process.

You should assign a value to the URL property and to the Filename property before the user invokes this action.

See Also