[Read/Write] This property sets/returns the class ID (CLSID) of the plug-in. The CLSID should be surrounded by braces ({}). For example, {12345678-1111-2222-AAAA-DDDDDDDDDDDD}.
string CLSID [ set, get ]
The following Visual C# example displays various properties of each registered plugin:
public class ExampleCode
{
static void Main()
{
HotDocs.Application app = new HotDocs.Application();
HotDocs.PluginsClass plugins = app.Plugins;
string msg;
for (int i = 0; i < plugins.Count; i++)
{
msg = "CLSID: " + plugins.Item(i).CLSID + "\n\r";
msg += "Description: " + plugins.Item(i).Description + "\n\r";
msg += "priorityClass: " + plugins.Item(i).priorityClass + "\n\r";
msg += "priorityIndex: " + plugins.Item(i).priorityIndex;
MessageBox.Show(msg);
}
}
}