Base interface for EasyMap application AddIns.
The class gets automaticaly loaded on startup if it is decorated with the
AddInAttribute
(Note: A reference to System.ComponentModel.Composition is regquired!)
Namespace: Easymap.AddInAssembly: EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.3.0.0
SyntaxThe IAddIn type exposes the following members.
Methods
Remarks
To create an AddIn create a new classlibrary project, add a reference to the Easymap.AddIn.dll (set copylocal to false, set the
output folder of the project to one of the AddIn folders), create a new class, implement IAddIn
and set the
AddInAttribute (a reference to System.ComponentModel.Composition is required!) for the class.
Example
Sample AddIn implementation
[AddIn("MyAddIn","MyAddIn Description")]
public class MyAddIn: IAddIn
{
public MyAddIn()
{
}
public void Initialize()
{
}
public void UnInitialize()
{
}
}
See Also