GetPlugInfo Function

This function is called to get information about plug-in functionality.

Syntax

void GetPluginInfo ( ref string UI_Name, ref string pluginToken, ref bool bIncludeAtInterviewEnd, ref HotDocs.Icon Icon, ref string supportedFileExtensions)

Example (Visual C#)

The following Visual C# example implements the GetPlugInfo function:

public void GetPluginInfo(ref string UI_Name, ref string pluginToken, ref bool bIncludeAtInterviewEnd, ref Icon Icon, ref string supportedFileExtensions)
{
    UI_Name = "Output Folder";
    pluginToken = "HDSendToFolderOutputPlugin";
    bIncludeAtInterviewEnd = true;
    Icon.LoadIcon(@"C:\images\SendToFolder.ico");
    supportedFileExtensions = ".docx;.rtf;.pdf";
}