GetMenuTitle Function

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.

Syntax

void GetMenuTitle( ref string menuTitle )

Parameters Description
menuTitle The title of your plug-in's library window menu.

Example (Visual C#)

The following Visual C# example implements the GetMenuTitle function:

public void GetMenuTitle(ref string menuTitle)
{
    menuTitle = "Menu Ext Plugin";
}