<-- Previous || Up || Next -->

Name Property
Symbol Table Class

Public Property Get Name( _
    ByVal vElement As Long _
    ) As Variant

Get the Name Property for some Symbol Table definition.

Example:
    Assuming
       Dim stTemp As New SymbolTable
       stTemp.Add "SubName", 23
    leaves
       stTemp.Name(1) = "SubName"
See also:
    Value Property
    Count Property
vElement: Number of the Symbol Table definition whose Name will be returned. vElement must be between 1 and Count or this Property will return an Empty value.

Public Property Let Name( _
      ByVal vElement As Long _
    , ByVal vName As Variant _
    )

Change the Name Property for some Symbol Table definition.

Example:
    Assuming
       Dim stTemp As New SymbolTable
       stTemp.Add "SubName", 23
    for example
       stTemp.Name(1) = "FunctionName"
    leaves
       stTemp.Name(1) = "FunctionName"
vElement: Number of the Symbol Table definition whose Name will be changed. vElement must be between 1 and Count or this Property assignment will silently do nothing.
vName: The new String or numeric Name for the Symbol Table definition.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.