Good morning, I have a small problem with "ResetInfo",
I would like users to be able to choose the metadata they want to remove by checking boxes, but I can't remove or add items.
In this situation, there is no problem: ImageEnView1.IO.Params.ResetInfo();
But there for example, if the user chooses only "EXIF" and "JPEG markers", I don't know how to add only "ierEXIF" and "ierJPEGMarkers" programmatically...
var
ri: TIEMetaInfoItems;
begin
ri := [];
If chkAnnotations.checked then
ri := ri + [ierAnnotations];
If chkEXIF.checked then
ri := ri + [ierEXIF];
...
ImageEnView1.IO.Params.ResetInfo( ri );
end;