You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get or set the value for a key. Notice this is the default property, so you can access the keys of a `IJSONDocument` by index notation (e.g.: `d['id']`)
46
+
47
+
### IJSONEnumerator
48
+
49
+
Use the `JSONEnum` function to create an `IJSONEnumerator` instance for a `IJSONDocument` reference.
50
+
51
+
function EOF: boolean;
52
+
53
+
Checks wether the enumerator is past the end of the set. Use `EOF` on a new enumerator for skipping the iteration on an empty set.
54
+
55
+
function Next: boolean;
56
+
57
+
Moves the iterator to the next item in the set. Moves the iterator to the first item on the first call. Returns false when moved past the end of the set.
58
+
59
+
function Key: WideString;
60
+
function Value: OleVariant;
61
+
62
+
Returns the key or value of the current item in the set.
0 commit comments