Vcl.ExtActns.TFileRun.Browse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Browse: Boolean read FBrowse write FBrowse;

C++

__property Browse;

Properties

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

Description

Controls whether an open dialog automatically appears to let users browse for the target file.

Vcl.ExtActns.TFileRun.Browse inherits from Vcl.ExtActns.TCustomFileRun.Browse. All content below this line refers to Vcl.ExtActns.TCustomFileRun.Browse.

Controls whether an open dialog automatically appears to let users browse for the target file.

Browse controls whether TCustomFileRun displays the dialog specified by BrowseDlg when it fires, letting users select the target file to be launched. When Browse is true, firing TCustomFileRun displays the open dialog specified by BrowseDlg, and then (if the user does not cancel) performs the operation specified by Operation on the chosen file. When Browse is false, your application must specify the target file by explicitly setting the FileName property.

Note: When Browse is true, TCustomFileRun ignores the FileName property.

See Also