System.Windows.Forms.CommandBarItemCollection.RemoveAt C# (CSharp) 메소드

RemoveAt() 공개 메소드

public RemoveAt ( int index ) : void
index int
리턴 void
        public void RemoveAt(int index)
        {
            CommandBarItem item = (CommandBarItem) this.items[index];
            items.RemoveAt(index);

            if (this.commandBar != null)
            {
                this.commandBar.RemoveItem(item);
            }
        }