ShellBrowser Delphi Components Documentation
ContentsIndexHome
PreviousUpNext
Jam.Shell.Controls.BaseShellListView.TJamBaseShellListView.OnGetColumnInfo

This event can be implemented to customize columns. It is called when a column is added to the view, but also when the header context menu or the column selection dialog is displayed.

Syntax
Pascal
property OnGetColumnInfo: TOnGetColumnInfo;

The following example illustrates how to rename the Size column.

if (pColumnId = TShellColumns.Size) then begin
  pColumnInfo.Title := 'Size(kB)';
end;