DependencyType Enumeration
Catalogs the types of dependency a HotDocs template can have on another file. NOTE: It needs to be kept in sync with the HotDocs desktop and server IDL files!

Namespace: HotDocs.Sdk
Assembly: HotDocs.Sdk (in HotDocs.Sdk.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public enum DependencyType
Members

  Member nameValueDescription
NoDependency0 No (or an unrecognized) dependency.
BaseCmpFile1 The "base" component file of a template; that is, the component file with the same base file name as the template.
PointedToCmpFile2 An additional component file (if any) that is "pointed to" by the template's base component file.
TemplateInsert3 Another template referred to in an INSERT instruction in this template.
ClauseInsert4 A clause referred to in an INSERT instruction in this template.
ClauseLibraryInsert5 A clause library referred to in an INSERT instruction in this template.
ImageInsert6 An image file (typically JPG or PNG) referred to in an INSERT instruction in this template.
InterviewImage7 An image file (typically JPG or PNG) displayed as part of the interview of this template.
VariableTemplateInsert8 The name of a text, multiple choice or computed variable referred to in an INSERT instruction in this template. This variable's answer (or the computation's result) at runtime will determine a template to be inserted.
VariableImageInsert9 The name of a text, multiple choice or computed variable referred to in an INSERT instruction in this template. This variable's answer (or the computation's result) at runtime will determine an image to be inserted.
MissingVariable10 The name of a variable that was referred to by the template but does not exist in the component file. Indicates an error condition.
MissingFile11 The name of a file that was referred to by the template but does not exist on disk or in the package. Indicates an error condition.
Assemble12 Another template referred to in an ASSEMBLE instruction in this template.
PublisherMapFile13 A publisher map file (.hdpmx)
UserMapFile14 A user map file (.hdumx)
AdditionalTemplate15 Another template otherwise designated as required by this template. This includes each item listed in this template's "Additional Templates" component file property. This is used to list templates that may potentially need to be inserted via a "variable" INSERT instruction.
See Also