Replace Method |
Replaces an item in the dictionary by a given item.
Signature
object.Replace Name, NewObject
Object
Dictionary
The object or objects this method applies to.
Name
String; input-only
The name (keyword) of the object to be replaced.
NewObject
Object; input-only
The new object.
Remarks
For example, "FirstKeyword," in the following dictionary:
MyDictionary
Keyword Object
FirstKeyword Object1
SecondKeyword Object2
has a new object, "NewObject," attached to it:
MyDictionary
Keyword Object
FirstKeyword NewObject
SecondKeyword Object2
Comments? |