IAddIn Interface |
Namespace: Easymap.AddIn
The IAddIn type exposes the following members.
Name | Description | |
---|---|---|
Initialize |
Initialize will by called by EasyMap to initialize the AddIn.
| |
UnInitialize |
Currently not used.
|
[AddIn("MyAddIn","MyAddIn Description")] public class MyAddIn: IAddIn { public MyAddIn() { } public void Initialize() { //Initialization code goes here //Use the Application.Current static Member to access the Application class } public void UnInitialize() { } }