Public Property Get Value( _ ByVal vElement As Long _ ) As Variant
Assuming Dim lstTemp As New List lstTemp.Add "SubName" leaves lstTemp.Value(1) = "SubName"See also:
Count PropertyvElement: Position within the List of the 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 lstTemp As New List lstTemp.Add "SubName" for example lstTemp.Value(1) = "FunctionName" leaves lstTemp.Value(1) = "FunctionName"vElement: Position within the List of the 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 lstTemp As New List lstTemp.Add "SubName" Dim objTemp As Object Set objTemp = Nothing for example Set lstTemp.Value(1) = objTempvElement: Position within the List of the 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.