![]() Example |
![]() ![]() ![]() |
acExtAssociation component.
|
procedure UninstallExtension(Ext: String);
|
The UninstallExtension method uninstalls the file type, specified in the Ext parameter, from the system registry and clears all registry keys which describes this file extension.
|
procedure TForm1.UninstallButtonClick(Sender: TObject);
|
begin
|
acExtAssociation1.UninstallExtension('myext');
|
end;
|
Example of usage;
|
InstallExtension method.
|