ComponentFactory.Krypton.Toolkit.KryptonCheckSet.KryptonCheckButtonCollection.OnInsertComplete C# (CSharp) Method

OnInsertComplete() protected method

Occurs when a new entry has been added to the collection.
protected OnInsertComplete ( int index, object value ) : void
index int Index of new entry.
value object Value at the new index.
return void
            protected override void OnInsertComplete(int index, object value)
            {
                _owner.CheckButtonAdded(value as KryptonCheckButton);
                base.OnInsertComplete(index, value);
            }