Assembly.OpenAnswerFileDlg Method

This method displays the Open Answer File dialog box.

This method works only with a visible assembly.

Syntax

void OpenAnswerFileDlg ( )

Example

The following Visual C# example displays the "Open Answer File" dialog box:

public class ExampleCode
{
    static void Main()
    {
        HotDocs.Application app = new HotDocs.Application();
        HotDocs._Assembly3 asm = app.ActiveAssembly as HotDocs._Assembly3;
         
        asm.OpenAnswerFileDlg(); 
    }
}