/// <summary> /// Adds a column to the current collection and raises the OnColumnAddedEvent on the parent control. /// </summary> /// <param name="value"></param> /// <returns></returns> public new int Add(ColumnHeader value) { int clm = base.Add(value); _Owner.OnColumnAdded(clm); return(clm); }