Application.Assemblies Property

[Read-only] This property returns an AssemblyCollection object, which is the collection of Assembly objects in the HotDocs assembly queue. By querying the Assemblies property, you can get all of the Assembly objects that are queued for assembly.

Syntax

HotDocs.AssemblyCollectionClass Assemblies [ get ]

Example

The following Visual C# example displays the number of items in the assembly queue. It also lists the title of each assembly (if the queue is not empty):

public class ExampleCode
{
    static void Main()
    {
        HotDocs.Application app = new HotDocs.Application();
         
        Console.WriteLine("The assembly queue contains {0} template(s).",app.Assemblies.Count);
        for (int i = 0; i < app.Assemblies.Count; i++)
            Console.WriteLine("\t" + app.Assemblies.Item(i).TemplateTitle);
    }
}