[This is preliminary documentation and subject to change.]
(Constructor)Initializes the plugin, using the Comunicator
The following example illustrates how to correctly create a plugin constructor:
public class MessagePlugin : ToDo.Plugin.PluginBase { public MessagePlugin(ToDo.Plugin.IComunicator c) : base(c) { // Additional constructor logic, such as defining additional controls // and menus should be placed here... } ... }
PluginBase Class | ToDo.Plugin Namespace