DICTGETVALUE

Top  Previous  Next

Syntax

STRING = DictGetValue(pAssoc as POINTER)

Description

Returns the string value from an association.

Parameters

pAssoc - A pointer returned by GetNextAssoc.

Return value

The string value..

Remarks

None

Example usage

PRINT:PRINT "Iterating":PRINT "---------"
pos = DictGetStartAssoc(myDict)
WHILE pos
    pAssoc = DictGetNextAssoc(myDict,pos)
    PRINT DictGetKey(pAssoc)," ",DictGetValue(pAssoc)
ENDWHILE