Vcl.FileCtrl.TFileListBox.FileEdit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FileEdit: TEdit read FFileEdit write SetFileEdit;

C++

__property Vcl::Stdctrls::TEdit* FileEdit = {read=FFileEdit, write=SetFileEdit};

Properties

Type Visibility Source Unit Parent
property published
Vcl.FileCtrl.pas
Vcl.FileCtrl.hpp
Vcl.FileCtrl TFileListBox

Description

Links the directory list box to an edit control that displays the currently selected file.

Set FileEdit to an edit control that displays the selected file from the file list box, as is commonly done in Open and Save dialog boxes. If no file is selected in the file list box, the text of the edit control is the current value of the file list box's Mask property.

Note: If the user changes the text of the edit control, the results are not automatically reflected in the file list box. Use the ApplyFilePath method to update the file list box when the edit control's text changes.

See Also

Code Examples