ShellBrowser Delphi Components Documentation
ContentsIndexHome
PreviousUpNext
ShellControls.TJamShellTree.GoUp

Goes up one level in the file system structure.

Syntax
Pascal
function GoUp: Boolean;

True if the command was executed successfully.

This method selects the parent folder of the current folder.

The following lines of code will handle the click on a button for the parent folder.

procedure TMainForm.ParentButtonClick(Sender: TObject);
begin
JamShellTree.GoUp;
end;