Class DictionaryEventArgs
Represents a class that provides the message or data sender class.
Inheritance
System.Object
System.EventArgs
DictionaryEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Edit.Utils
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class DictionaryEventArgs : EventArgs
Constructors
DictionaryEventArgs()
Initializes a new instance of the DictionaryEventArgs class.
Declaration
public DictionaryEventArgs()
DictionaryEventArgs(Object, Object)
Initializes a new instance of the DictionaryEventArgs class.
Declaration
public DictionaryEventArgs(object key, object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | Key. |
System.Object | value | Value. |
DictionaryEventArgs(Object, Object, Object)
Initializes a new instance of the DictionaryEventArgs class.
Declaration
public DictionaryEventArgs(object key, object value, object old)
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | Key. |
System.Object | value | Value. |
System.Object | old | Old value. |
Properties
Cancel
Gets or sets a value indicating whether to cancel current action or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
Empty
Gets the empty instance of this class.
Declaration
public static DictionaryEventArgs Empty { get; }
Property Value
Type |
---|
DictionaryEventArgs |
Key
Gets the key value of dictionary Item.
Declaration
public object Key { get; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the dictionary item which will be replaced
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
Value
Gets the dictionary item.
Declaration
public object Value { get; }
Property Value
Type |
---|
System.Object |