alexa
menu

WinForms

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

    Show / Hide Table of Contents

    Class EventBaseCollection

    Represents a class that provides the abstract base class for a strongly typed collection.

    Inheritance
    System.Object
    EventBaseCollection
    ContextPromptCollection
    FormatManager
    FormatsCollection
    Namespace: Syncfusion.Windows.Forms.Edit.Utils
    Assembly: Syncfusion.Edit.Windows.dll
    Syntax
    public class EventBaseCollection : CollectionBase

    Constructors

    EventBaseCollection()

    Declaration
    public EventBaseCollection()

    Properties

    QuietMode

    Gets or sets a value indicating whether the collection work in silent mode without raising any event to user or in normal mode.

    Declaration
    public bool QuietMode { get; set; }
    Property Value
    Type
    System.Boolean

    Methods

    add_Cleared(CollectionEventHandler)

    Declaration
    public void add_Cleared(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Clearing(CollectionEventHandler)

    Declaration
    public void add_Clearing(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Inserted(CollectionEventHandler)

    Declaration
    public void add_Inserted(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Inserting(CollectionEventHandler)

    Declaration
    public void add_Inserting(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Removed(CollectionEventHandler)

    Declaration
    public void add_Removed(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Removing(CollectionEventHandler)

    Declaration
    public void add_Removing(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Set(CollectionEventHandler)

    Declaration
    public void add_Set(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    add_Setting(CollectionEventHandler)

    Declaration
    public void add_Setting(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    OnClear()

    Fires corresponding events.

    Declaration
    protected override void OnClear()

    OnClearComplete()

    Fires corresponding events.

    Declaration
    protected override void OnClearComplete()

    OnInsert(Int32, Object)

    Fires corresponding events.

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

    OnInsertComplete(Int32, Object)

    Fires corresponding events.

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

    OnRemove(Int32, Object)

    Fires corresponding events.

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

    OnRemoveComplete(Int32, Object)

    Fires corresponding events.

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

    OnSet(Int32, Object, Object)

    Fires corresponding events.

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

    OnSetComplete(Int32, Object, Object)

    Fires corresponding events.

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

    RaiseOnChangedEvent()

    Fires corresponding events.

    Declaration
    protected void RaiseOnChangedEvent()

    remove_Cleared(CollectionEventHandler)

    Declaration
    public void remove_Cleared(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Clearing(CollectionEventHandler)

    Declaration
    public void remove_Clearing(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Inserted(CollectionEventHandler)

    Declaration
    public void remove_Inserted(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Inserting(CollectionEventHandler)

    Declaration
    public void remove_Inserting(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Removed(CollectionEventHandler)

    Declaration
    public void remove_Removed(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Removing(CollectionEventHandler)

    Declaration
    public void remove_Removing(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Set(CollectionEventHandler)

    Declaration
    public void remove_Set(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    remove_Setting(CollectionEventHandler)

    Declaration
    public void remove_Setting(CollectionEventHandler value)
    Parameters
    Type Name Description
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler value

    Events

    Cleared

    Occurs when OnClearComplete() method is called.

    Declaration
    public event CollectionEventHandler Cleared
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    Clearing

    Occurs when OnClear() method is called.

    Declaration
    public event CollectionEventHandler Clearing
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    Inserted

    Occurs when OnInsertComplete(Int32, Object) method is called.

    Declaration
    public event CollectionEventHandler Inserted
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    Inserting

    Occurs when OnInsert(Int32, Object) method is called.

    Declaration
    public event CollectionEventHandler Inserting
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    OnChanged

    Occurs when any collection changed.

    Declaration
    public event EventHandler OnChanged
    Event Type
    Type
    System.EventHandler

    Removed

    Occurs when OnRemoveComplete(Int32, Object) method is called.

    Declaration
    public event CollectionEventHandler Removed
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    Removing

    Occurs when OnRemove(Int32, Object) method is called.

    Declaration
    public event CollectionEventHandler Removing
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    Set

    Occurs when OnSetComplete(Int32, Object, Object) method is called.

    Declaration
    public event CollectionEventHandler Set
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler

    Setting

    Occurs when OnSet(Int32, Object, Object) method is called.

    Declaration
    public event CollectionEventHandler Setting
    Event Type
    Type
    Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler
    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved