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) 只能依索引存取域值。