ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following example shows how to set the property "comment" of a file:

  var
    ItemIdList: IItemIdList;
  begin
    ItemIdList := TJamItemIdList.Create('C:UsersPublicMusicsample.mp3');
    TJamFileOperation.SetProperty(ItemIdList, TShellColumns.Comment, 'Great song');
  end;