Liquid XML Data Binder (C++, Java, VB6) / Reference / C# and VB .Net (Deprecated - use Liquid XML Objects) / Reference / AttributeCol / Liquid XML Runtime for .Net - OnCollectionRemoveComplete - XmlCollectionBase
In This Topic
    Liquid XML Runtime for .Net - OnCollectionRemoveComplete - XmlCollectionBase
    In This Topic
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    public event OnCollectionRemoveCompleteEvent OnCollectionRemoveComplete;
      Property Description  
        Event Name OnCollectionAdd  
        Delgate

    public delegate void OnCollectionRemoveCompleteEvent(object source, XmlCollectionRemoveEventArgs args);

    public class XmlCollectionRemoveEventArgs : EventArgs
    {
        private int _index = -1;
        public XmlCollectionRemoveEventArgs(int index) { _index = index; }
        public int index { get { return _index; } } // the index of the item to be removed
    }

     
        Description Fired After an item is removed from the collection.  
        Remarks