OnColumnAdded() 개인적인 메소드

Raises the ColumnAdded Event when a new column is added to the ColumnHeaders collection.
private OnColumnAdded ( int ColumnIndex ) : void
ColumnIndex int
리턴 void
예제 #1
0
            /// <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);
            }