Application.Visible Property

[Read/Write] This Boolean property controls the visibility status of the HotDocs library window. For example, if the Visible property is False, the library window is not visible.

Syntax

bool Visible [ get, set ]

Example

The following Visual C# example makes the library window invisible if it is currently visible. Otherwise, it makes the library window visible if it is currently invisible.

public class ExampleCode
{
    static void Main()
    {
        HotDocs.Application app = new HotDocs.Application();
         
        if (app.Visible)
            app.Visible = false;
        else
            app.Visible = true;
    }
}