Vcl.ExtActns.TCustomFileRun.Browse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Browse: Boolean read FBrowse write FBrowse;

C++

__property bool Browse = {read=FBrowse, write=FBrowse, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ExtActns.pas
Vcl.ExtActns.hpp
Vcl.ExtActns TCustomFileRun

Description

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