ShellBrowser Delphi Components Documentation
|
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.
property OnGetColumnInfo: TOnGetColumnInfo;
The following example illustrates how to rename the Size column.
if (pColumnId = TShellColumns.Size) then begin pColumnInfo.Title := 'Size(kB)'; end;