Assembly.PreSaveAnswersEvent Event

In HotDocs 10 and earlier this event was listed as OnPreSaveAnswersEvent.  It is intended to eliminate the need to pass the AnswerCollection by pointer and instead wrap it in a object. This should help Visual Basic programmers deal with the VARIANT event. This event should be fired at the same time as OnPreSaveAnswersEvent.

This event is fired after the user has indicated he or she wants to save the answers, but before the actual save occurs. By setting *override == true, the integration can prevent the save from happening.

Syntax

void PreSaveAnswersEvent ( HotDocs._AnswerCollection answers, out bool override )

Parameters Description
answers The AnswerCollection object that represents the answer file about to be saved.
override Return parameter:
  • *override == true means that HotDocs will not perform the answer file save.
  • *override == false means that HotDocs will continue normally.