LibraryInitialized Function

This function is called when the library is initialized.

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");
}