Class EventBaseDictionary
Represents a class that contains the various dictionary events.
Inheritance
Namespace: Syncfusion.Windows.Forms.Edit.Utils
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public class EventBaseDictionary : DictionaryBase
Constructors
EventBaseDictionary()
Declaration
public EventBaseDictionary()
Properties
QuietMode
Gets or sets a value indicating whether events should be fired or not.
Declaration
public bool QuietMode { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
Methods
add_Cleared(DictionaryEventHandler)
Declaration
public void add_Cleared(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Clearing(DictionaryEventHandler)
Declaration
public void add_Clearing(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Get(DictionaryEventHandler)
Declaration
public void add_Get(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Inserted(DictionaryEventHandler)
Declaration
public void add_Inserted(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Inserting(DictionaryEventHandler)
Declaration
public void add_Inserting(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Removed(DictionaryEventHandler)
Declaration
public void add_Removed(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Removing(DictionaryEventHandler)
Declaration
public void add_Removing(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Set(DictionaryEventHandler)
Declaration
public void add_Set(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
add_Setting(DictionaryEventHandler)
Declaration
public void add_Setting(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
OnClear()
Fires corresponding events.
Declaration
protected override void OnClear()
OnClearComplete()
Fires corresponding events.
Declaration
protected override void OnClearComplete()
OnGet(Object, Object)
Fires corresponding events.
Declaration
protected override object OnGet(object key, object currentValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to get. |
| System.Object | currentValue | The current value of the element associated with key. |
Returns
| Type | Description |
|---|---|
| System.Object | An Object containing the element with the specified key and value. |
OnInsert(Object, Object)
Fires corresponding events.
Declaration
protected override void OnInsert(object key, object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to insert. |
| System.Object | value | The value of the element to insert. |
OnInsertComplete(Object, Object)
Fires corresponding events.
Declaration
protected override void OnInsertComplete(object key, object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to insert. |
| System.Object | value | The value of the element to insert. |
OnRemove(Object, Object)
Fires corresponding events.
Declaration
protected override void OnRemove(object key, object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to remove. |
| System.Object | value | The value of the element to remove. |
OnRemoveComplete(Object, Object)
Fires corresponding events.
Declaration
protected override void OnRemoveComplete(object key, object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to remove. |
| System.Object | value | The value of the element to remove. |
OnSet(Object, Object, Object)
Fires corresponding events.
Declaration
protected override void OnSet(object key, object oldValue, object newValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to locate. |
| System.Object | oldValue | The old value of the element associated with key. |
| System.Object | newValue | The new value of the element associated with key. |
OnSetComplete(Object, Object, Object)
Fires corresponding events.
Declaration
protected override void OnSetComplete(object key, object oldValue, object newValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | key | The key of the element to locate. |
| System.Object | oldValue | The old value of the element associated with key. |
| System.Object | newValue | The new value of the element associated with key. |
remove_Cleared(DictionaryEventHandler)
Declaration
public void remove_Cleared(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Clearing(DictionaryEventHandler)
Declaration
public void remove_Clearing(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Get(DictionaryEventHandler)
Declaration
public void remove_Get(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Inserted(DictionaryEventHandler)
Declaration
public void remove_Inserted(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Inserting(DictionaryEventHandler)
Declaration
public void remove_Inserting(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Removed(DictionaryEventHandler)
Declaration
public void remove_Removed(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Removing(DictionaryEventHandler)
Declaration
public void remove_Removing(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Set(DictionaryEventHandler)
Declaration
public void remove_Set(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
remove_Setting(DictionaryEventHandler)
Declaration
public void remove_Setting(DictionaryEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler | value |
Events
Cleared
Occurs when OnClearComplete() method is called.
Declaration
public event DictionaryEventHandler Cleared
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Clearing
Occurs when OnClear() method is called.
Declaration
public event DictionaryEventHandler Clearing
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Get
Occurs when OnGet(Object, Object) method is called.
Declaration
public event DictionaryEventHandler Get
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Inserted
Occurs when OnInsertComplete(Object, Object) method is called.
Declaration
public event DictionaryEventHandler Inserted
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Inserting
Occurs when OnInsert(Object, Object) method is called.
Declaration
public event DictionaryEventHandler Inserting
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Removed
Occurs when OnRemoveComplete(Object, Object) method is called.
Declaration
public event DictionaryEventHandler Removed
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Removing
Occurs when OnRemove(Object, Object) method is called.
Declaration
public event DictionaryEventHandler Removing
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Set
Occurs when OnSetComplete(Object, Object, Object) method is called.
Declaration
public event DictionaryEventHandler Set
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |
Setting
Occurs when OnSet(Object, Object, Object) method is called.
Declaration
public event DictionaryEventHandler Setting
Event Type
| Type |
|---|
| Syncfusion.Windows.Forms.Edit.Utils.DictionaryEventHandler |