LlEnumGetNextEntry

Syntax:

HLISTPOS LlEnumGetNextEntry (HLLJOB hJob, HLISTPOS hPos, UINT nFlags);

Task:

Returns the next field/variable (if any). The iteration starts with LlEnumGetFirstVar() or LlEnumGetFirstField() and is continued with this function.

Parameter:

hJob: List & Label job handle

hPos: Iterator of the current variable or field

nFlags: Flags for the allowed types of fields (to be 'or'ed):
LL_TEXT, LL_BOOLEAN, LL_BARCODE, LL_DRAWING, LL_NUMERIC, LL_DATE, LL_RTF, LL_HTML

Return Value:

Iterator for the next variable/field, or NULL if no further variable/field exists.

Hints:

During the LlEnum...() functions, a call to LlDefineVariableStart() or LlDefineFieldStart() is prohibited!

See also:

LlEnumGetFirstVar, LlEnumGetFirstField, LlEnumGetEntry