ImageEn, unit iexFolderTree
TIEFolderTree
Properties · Methods · Events · Demos · Examples
Declaration TIEFolderTree = class(TCustomTreeView); Description
TIEFolderTree is a TTreeView descendent that displays a Windows Explorer style folder tree.
You can attach a
TImageEnMView ,
TImageEnFolderMView or
TIEFileListBox to display folder content (i.e. files and thumbnails).
It supports:
◼ Dragging and
dropping files from Windows
◼ Keyboard shortcuts for file operations, such as copy, paste, delete, etc.
◼ Automatic refreshing when folder contents change
◼ Display of the
Windows Explorer popup menu
◼ Display of the folder tree for
Zip files (If the
plug-in is installed)
Folder nodes are of type
TIEFolderNode .
Keyboard Shortcuts
The following keyboard shortcuts are supported if
enabled (and
ReadOnly = False):
Description Type Shortcut
Delete the selected folder iesDelete Delete
Rename the selected folder iesRename F2
Open parent folder iesOpenParent Backspace
Refresh folder list iesRefresh F5
Display the Folder Properties Dialog iesProperties Alt+Enter
Cut file to clipboard iesCut Ctrl+X
Copy file to clipboard iesCopy Ctrl+C
Paste file from clipboard iesPaste Ctrl+V
Display the system popup menu iesSystemMenu Shift+F10
Note: Configure or disable individual keyboard shortcuts using
KeyboardShortcuts
Demos\Multi\Explorer\ExplorerDemo.dpr
Demos\Other\FolderTree\FolderTree.dpr
Demos\InputOutput\BatchConvert\BatchConvert.dpr
// Create a simple explorer style application IEFolderTree1.AutoRefresh := True; IEFolderTree1.AttachedMView := IEFolderMView1;
General
Selection
Other