ListViewInsertedEventArgs.Values 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取插入记录的字段名称/值对。
public:
property System::Collections::Specialized::IOrderedDictionary ^ Values { System::Collections::Specialized::IOrderedDictionary ^ get(); };
public System.Collections.Specialized.IOrderedDictionary Values { get; }
member this.Values : System.Collections.Specialized.IOrderedDictionary
Public ReadOnly Property Values As IOrderedDictionary
属性值
插入记录的字段名称/值对。
注解
Values使用 属性访问插入记录的字段值。 例如,可以使用这些值来保留插入记录的日志。
属性 Values 返回实现 OrderedDictionary 接口的 IOrderedDictionary 对象。 对象 OrderedDictionary 包含 DictionaryEntry 表示插入记录的字段的对象。 若要访问字段名称,请使用 OrderedDictionary.Keys 对象的 属性 OrderedDictionary 。 同样,可以使用 属性访问字段值 OrderedDictionary.Values 。
注意
作为快捷方式,还可以使用 对象的索引器 OrderedDictionary 直接访问字段值。 使用索引器的优点是它直接返回字段值。 依赖于字段顺序 ((例如) ) AccessDataSource 的数据源控件只能按索引访问字段值。