API: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

TURLAction is the base class for actions that perform some function based on an URL.

Vcl.ExtActns.TDownLoadURL inherits from Vcl.ExtActns.TURLAction. All content below this line refers to Vcl.ExtActns.TURLAction.

TURLAction is the base class for actions that perform some function based on an URL.

Use TURLAction as a base class when creating an action component that uses a Uniform Resource Locator (URL). TURLAction introduces the URL property to get or set the URL that it works with, but does not actually do anything with that URL. Rather, TURLAction descendants, such as TBrowseURL or TDownLoadURL, override the ExecuteTarget method to perform some operation that uses the value of the URL property.

TURLAction automatically disables itself if the URL property has not been assigned.

See Also