Public Property Get Value( _
    ByVal vElement As Long _
    ) As Variant    Assuming
       Dim stTemp As New SymbolTable
       stTemp.Add "SubName", 23
    leaves
       stTemp.Value(1) = 23See also:     Name Property
    Count PropertyvElement: Number of the Symbol Table definition whose Value will be returned. vElement must be between 1 and Count or this Property will return an Empty value. 
![]()
Public Property Let Value( _
      ByVal vElement As Long _
    , ByVal vValue As Variant _
    )    Assuming
       Dim stTemp As New SymbolTable
       stTemp.Add "SubName", 23
    for example
       stTemp.Value(1) = 55
    leaves
       stTemp.Value(1) = 55vElement: Number of the Symbol Table definition whose Value will be changed. vElement must be between 1 and Count or this Property assignment will silently do nothing. 
![]()
Public Property Set Value( _
      ByVal vElement As Long _
    , ByVal vValue As Variant _
    )    Assuming
       Dim stTemp As New SymbolTable
       stTemp.Add "SubName", 23
    for example
       stTemp.Value(1) = 55
    leaves
       stTemp.Value(1) = 55vElement: Number of the Symbol Table definition whose Value will be changed. vElement must be between 1 and Count or this Property assignment will silently do nothing. Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.