Unregister a program file as an EViews Add-in.
Syntax
deleteaddin(options) [path\]prog_name
unregisters the specified program file as an EViews Add-in.
If you do not provide the optional path specification, EViews looks for the program file in the default EViews Add-ins directory.
Explicit path specifications containing “.\” and “..\” (to indicate the current level and one directory level up) are evaluated relative EViews default directory.
You may use the special “<addins>” directory keyword in your path specification.
Options
 
type=arg  | Specify the Add-ins type, where arg is the name of a EViews object type. The default is to create a global Add-in.  | 
proc=arg  | User-defined command/procedure name. If omitted, the Add-in will not have a command form.  | 
 
Examples
deleteaddin .\myaddin.prg
unregisters the Add-in associated with file “Myaddin.prg”. 
Alternatively,
deleteaddin(proc="myaddin")
unregisters the Add-in whose proc name matches “myaddin”. Note that this name may not match the program name.
deleteaddin(type="graph", proc="recshade")
unregisters the graph “Recshade” specific Add-in. In cases, where more than 1 Add-in has the same proc name, the type is useful to differentiate which is to be unregistered.
Cross-references
See 
    
“Add-ins” for a detailed discussion of Add-ins.