ClearImage DLID Reader Send comments on this topic.
Elements Property
See Also  Example

Description

List of Element objects

Property type

Read-only property

Syntax

Visual Basic
Public Property Elements() As Collection

Example

Visual BasicCopy Code
' Iterating through Elements in collection
Dim d As ClearRealId.Element, s As String
For Each d In oParser.Elements
  If (d.isSet) Then
    s = s & d.Description & " [" & d.Id & "] = '" & d.Value & "'" & vbCrLf
  End If
Next

See Also