LibraryInitialized Function

This function is called when HotDocs has loaded, an add-in has loaded, and the main window has been created.

Syntax

void LibraryInitialized()

Example (Visual C#)

The following Visual C# example displays a message box when the library is initialized.

public void LibraryInitialized()
{
    MessageBox.Show("The library has been initialized");
}