Application.AssemblyQueueVisible Property

[Read/Write] This Boolean property controls the visibility status of the HotDocs assembly queue. For example, if the AssemblyQueueVisible property is False, the assembly queue is not visible.

Syntax

bool AssemblyQueueVisible [ set, get ]

Example

The following Visual C# example makes the assembly queue invisible if it is currently visible. Otherwise, it makes the assembly queue visible if it is currently invisible:

public class ExampleCode
{
    static void Main()
    {
        HotDocs.Application app = new HotDocs.Application();
        app.AssemblyQueueVisible = !(app.AssemblyQueueVisible);
    }
}