This function retrieves the title for your plug-in's library window menu. If it fails, or if the text returned is an empty string (""), HotDocs will not display the menu.
void GetMenuTitle( ref string menuTitle )
| Parameters | Description |
| menuTitle | The title of your plug-in's library window menu. |
The following Visual C# example implements the GetMenuTitle function:
public void GetMenuTitle(ref string menuTitle)
{
menuTitle = "Menu Ext Plugin";
}