extassociation UninstallExtension method
Example
Return to Introduction  Previous page  Next page
Applies to
acExtAssociation component.  

Declaration
procedure UninstallExtension(Ext: String);  

Description
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.  

Example
procedure TForm1.UninstallButtonClick(Sender: TObject);  
begin  
  acExtAssociation1.UninstallExtension('myext');  
end;  

See also
Example of usage;  
InstallExtension method.