alexa
menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class EventBaseDictionary

    Collection throws an event on any context change.

    Inheritance
    System.Object
    EventBaseDictionary
    Namespace: Syncfusion.Windows.Forms.HTMLUI
    Assembly: Syncfusion.HTMLUI.Windows.dll
    Syntax
    public class EventBaseDictionary : DictionaryBase

    Constructors

    EventBaseDictionary()

    Declaration
    public EventBaseDictionary()

    Properties

    QuietMode

    Gets or sets a value indicating whether event will be raised.

    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
    DictionaryEventHandler value

    add_Clearing(DictionaryEventHandler)

    Declaration
    public void add_Clearing(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Get(DictionaryEventHandler)

    Declaration
    public void add_Get(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Inserted(DictionaryEventHandler)

    Declaration
    public void add_Inserted(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Inserting(DictionaryEventHandler)

    Declaration
    public void add_Inserting(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Removed(DictionaryEventHandler)

    Declaration
    public void add_Removed(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Removing(DictionaryEventHandler)

    Declaration
    public void add_Removing(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Set(DictionaryEventHandler)

    Declaration
    public void add_Set(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    add_Setting(DictionaryEventHandler)

    Declaration
    public void add_Setting(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    OnClear()

    Overridden. Raised when clear event occurs.

    Declaration
    protected override void OnClear()

    OnClearComplete()

    Overridden. Raised when ClearComplete event occurs.

    Declaration
    protected override void OnClearComplete()

    OnGet(Object, Object)

    Overridden. Raised when Get event occurs.

    Declaration
    protected override object OnGet(object key, object currentValue)
    Parameters
    Type Name Description
    System.Object key

    Key for getting value.

    System.Object currentValue

    Current value corresponding to this key.

    Returns
    Type Description
    System.Object

    Element with such a key and value.

    OnInsert(Object, Object)

    Overridden. Raised when Insert event occurs.

    Declaration
    protected override void OnInsert(object key, object value)
    Parameters
    Type Name Description
    System.Object key

    Key of the object.

    System.Object value

    Value of the object.

    OnInsertComplete(Object, Object)

    Overridden. Raised when InsertComplete event occurs.

    Declaration
    protected override void OnInsertComplete(object key, object value)
    Parameters
    Type Name Description
    System.Object key

    Key of the object.

    System.Object value

    Value of the object.

    OnRemove(Object, Object)

    Overridden. Raised when Remove event occurs.

    Declaration
    protected override void OnRemove(object key, object value)
    Parameters
    Type Name Description
    System.Object key

    Key of the object.

    System.Object value

    Value of the object.

    OnRemoveComplete(Object, Object)

    Overridden. Raised when RemoveComplete event occurs.

    Declaration
    protected override void OnRemoveComplete(object key, object value)
    Parameters
    Type Name Description
    System.Object key

    Key of the object.

    System.Object value

    Value of the object.

    OnSet(Object, Object, Object)

    Overridden. Raised when Set event occurs.

    Declaration
    protected override void OnSet(object key, object oldValue, object newValue)
    Parameters
    Type Name Description
    System.Object key

    Key for getting value.

    System.Object oldValue

    Old value.

    System.Object newValue

    New value.

    OnSetComplete(Object, Object, Object)

    Overridden. Raised when SetComplete event occurs.

    Declaration
    protected override void OnSetComplete(object key, object oldValue, object newValue)
    Parameters
    Type Name Description
    System.Object key

    Key of the object.

    System.Object oldValue

    Old value.

    System.Object newValue

    New value.

    RaiseOnChangedEvent()

    Raises the OnChanged Event.

    Declaration
    protected void RaiseOnChangedEvent()

    remove_Cleared(DictionaryEventHandler)

    Declaration
    public void remove_Cleared(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Clearing(DictionaryEventHandler)

    Declaration
    public void remove_Clearing(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Get(DictionaryEventHandler)

    Declaration
    public void remove_Get(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Inserted(DictionaryEventHandler)

    Declaration
    public void remove_Inserted(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Inserting(DictionaryEventHandler)

    Declaration
    public void remove_Inserting(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Removed(DictionaryEventHandler)

    Declaration
    public void remove_Removed(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Removing(DictionaryEventHandler)

    Declaration
    public void remove_Removing(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Set(DictionaryEventHandler)

    Declaration
    public void remove_Set(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    remove_Setting(DictionaryEventHandler)

    Declaration
    public void remove_Setting(DictionaryEventHandler value)
    Parameters
    Type Name Description
    DictionaryEventHandler value

    Events

    Cleared

    Raised by OnClearComplete() method.

    Declaration
    public event DictionaryEventHandler Cleared
    Event Type
    Type
    DictionaryEventHandler

    Clearing

    Raised by OnClear() method.

    Declaration
    public event DictionaryEventHandler Clearing
    Event Type
    Type
    DictionaryEventHandler

    Get

    Raised by OnGet(Object, Object) method.

    Declaration
    public event DictionaryEventHandler Get
    Event Type
    Type
    DictionaryEventHandler

    Inserted

    Raised by OnInsertComplete(Object, Object) method.

    Declaration
    public event DictionaryEventHandler Inserted
    Event Type
    Type
    DictionaryEventHandler

    Inserting

    Raised by OnInsert(Object, Object) method.

    Declaration
    public event DictionaryEventHandler Inserting
    Event Type
    Type
    DictionaryEventHandler

    OnChanged

    Raised on any change in the collection.

    Declaration
    public event EventHandler OnChanged
    Event Type
    Type
    System.EventHandler

    Removed

    Raised by OnRemoveComplete(Object, Object) method.

    Declaration
    public event DictionaryEventHandler Removed
    Event Type
    Type
    DictionaryEventHandler

    Removing

    Raised by OnRemove(Object, Object) method.

    Declaration
    public event DictionaryEventHandler Removing
    Event Type
    Type
    DictionaryEventHandler

    Set

    Raised by OnSetComplete(Object, Object, Object) method.

    Declaration
    public event DictionaryEventHandler Set
    Event Type
    Type
    DictionaryEventHandler

    Setting

    Raised by OnSet(Object, Object, Object) method.

    Declaration
    public event DictionaryEventHandler Setting
    Event Type
    Type
    DictionaryEventHandler
    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved