RemoveAll 方法
RemoveAll 方法从 Dictionary 对象中删除所有键项对。
语法
对象。RemoveAll
object 始终指 Dictionary 对象的名称。
备注
以下代码演示了 RemoveAll 方法的用法。
Dim a, d, i 'Create some variables
Set d = CreateObject("Scripting.Dictionary")
d.Add "a", "Athens" 'Add some keys and items
d.Add "b", "Belgrade"
d.Add "c", "Cairo"
...
a = d.RemoveAll 'Clear the dictionary
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。