Answer EnumerateValues Method
EnumerateValues uses the Visitor design pattern to enumerate all the values associated with this answer. For each value that is part of the answer, the supplied state object is passed to the supplied callback method, along with the repeat indices for that value. The callback must be a delegate of type ValueEnumerationDelegate.

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

public abstract void EnumerateValues(
	Object state,
	Answer..::..ValueEnumerationDelegate callback
)

Parameters

state
Type: OnlineSystem Object
An object to keep track of whatever state you will need during the enumeration. For simple enumerations, passing a reference to the Answer object in question (so you can use the repeat indices to look up values) may be adequate.
callback
Type: HotDocs.Sdk Answer ValueEnumerationDelegate
A delegate of type ValueEnumerationDelegate.
See Also