Class EventBaseCollection
Represents a class that provides the abstract base class for a strongly typed collection.
Inheritance
System.Object
EventBaseCollection
Assembly: Syncfusion.Edit.Windows.dll
public class EventBaseCollection : CollectionBase
Constructors
Declaration
public EventBaseCollection()
Properties
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
Methods
Declaration
public void add_Cleared(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Clearing(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Inserted(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Inserting(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Removed(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Removing(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Set(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void add_Setting(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Fires corresponding events.
Declaration
protected override void OnClear()
Fires corresponding events.
Declaration
protected override void OnClearComplete()
Fires corresponding events.
Declaration
protected override void OnInsert(int index, object value)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Object |
value |
|
Fires corresponding events.
Declaration
protected override void OnInsertComplete(int index, object value)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Object |
value |
|
Fires corresponding events.
Declaration
protected override void OnRemove(int index, object value)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Object |
value |
|
Fires corresponding events.
Declaration
protected override void OnRemoveComplete(int index, object value)
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
| System.Object |
value |
|
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 |
|
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 |
|
Fires corresponding events.
Declaration
protected void RaiseOnChangedEvent()
Declaration
public void remove_Cleared(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Clearing(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Inserted(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Inserting(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Removed(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Removing(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Set(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Declaration
public void remove_Setting(CollectionEventHandler value)
Parameters
| Type |
Name |
Description |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
value |
|
Events
Declaration
public event CollectionEventHandler Cleared
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Declaration
public event CollectionEventHandler Clearing
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Declaration
public event CollectionEventHandler Inserted
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Declaration
public event CollectionEventHandler Inserting
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Occurs when any collection changed.
Declaration
public event EventHandler OnChanged
Event Type
Declaration
public event CollectionEventHandler Removed
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Declaration
public event CollectionEventHandler Removing
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Declaration
public event CollectionEventHandler Set
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |
Declaration
public event CollectionEventHandler Setting
Event Type
| Type |
| Syncfusion.Windows.Forms.Edit.Utils.CollectionEventHandler |