Ext.Net.TabStrip.Remove C# (CSharp) Method

Remove() public method

public Remove ( TabStripItem item ) : void
item TabStripItem
return void
        public void Remove(TabStripItem item)
        {
            if (this.ItemID.IsNotEmpty())
            {
                this.Call("remove", item.ItemID);
            }
            else
            {
                this.Call("remove", this.Items.IndexOf(item));
            }

            if (this.Items.Contains(item))
            {
                this.Items.Remove(item);
            }
        }

Same methods

TabStrip::Remove ( string itemId ) : void