ImageEn, unit iexMetaHelpers

TStringGridHelper.ClearGridFields

TStringGridHelper.ClearGridFields


Declaration

procedure ClearGridFields;


Description

Clears all values in a TStringGrid containing EXIF or IPTC properties, which was filled using one of the following:
- NewGridForExif
- NewGridForIPTC
- ReadGridFromExif
- ReadGridFromIPTC

Note: Only clears the grid, not EXIF or IPTC properties of a file


Examples

procedure TMainForm.btnResetGridClick(Sender: TObject);
begin
  // Clear all the specified values for our grid
  MyExifStringGrid.ClearGridFields;
end;