Occurs when the project help file is about to be displayed.

[VBScript]
Public Event ProjectDisplay( _
   wordDocument As Word.Document _
)
[JScript]
public event ProjectDisplay(
   wordDocument : Word.Document
);

Remarks

If you want to customize the export process, you can attach your function to this event. If you do not override this event handler, the default handler processes this event. The default handler displays the compiled help file.

Example

function Application::ProjectDisplay(wordDocument)
{
   Console.Message(hpInformation, "Displaying help file...");
   // Add your code here
}

See Also

Application Object | Application Members | HelpProducer Namespace