ListViewDeleteEventArgs.Keys Property

Definition

Gets a dictionary of field name/value pairs that represent the primary key or keys of the item to delete.

public:
 property System::Collections::Specialized::IOrderedDictionary ^ Keys { System::Collections::Specialized::IOrderedDictionary ^ get(); };
public System.Collections.Specialized.IOrderedDictionary Keys { get; }
member this.Keys : System.Collections.Specialized.IOrderedDictionary
Public ReadOnly Property Keys As IOrderedDictionary

Property Value

An object that contains the name/value pairs that represent the primary key or keys of the item to delete.

Remarks

When the DataKeyNames property of a ListView control is set, use the Keys property to access the value of the primary key or keys in the item to delete.

Note

This property contains only the key fields. To access the values of the non-key fields, use the Values property.

The Keys dictionary is automatically populated with the name/value pairs of the field or fields that are specified in the DataKeyNames property. If the primary key contains multiple fields, a separate entry is added to the Keys dictionary for each key field.

To determine the name of a key field, use the DictionaryEntry.Key property of a DictionaryEntry object that is contained in the Keys dictionary. To determine the value of a key field, use the DictionaryEntry.Value property.

Applies to

See also