Dictionary.Item PropertySets or returns an item for a specified key in a Dictionary object. Read/write.object.Item (key) [ = newitem ] Arguments
RemarksIf key is not found when changing an item, a new key is created with the specified newitem. If key is not found when attempting to return an existing item, a new key is created and its corresponding item is left empty.The following example illustrates the use of the Item property. function DicTest(keyword) { var a, d; d = new Application.Dictionary(); d.Add("a", "Athens"); d.Add("b", "Belgrade"); d.Add("c", "Cairo"); a = d.Item(keyword); return(a); } Applies To:Dictionary ObjectRequirements |