Sdílet prostřednictvím


ToolBoxTab2.Delete – metoda

Odebere ToolBoxTab z kolekce.

Obor názvů:  EnvDTE80
Sestavení:  EnvDTE80 (v EnvDTE80.dll)

Syntaxe

'Deklarace
Sub Delete
void Delete()
void Delete()
abstract Delete : unit -> unit 
function Delete()

Implementuje

ToolBoxTab.Delete()

Příklady

Tento příklad přidá nové položky na kartě nástrojů, aktivuje se a odstraní, pokud uživatel provést. Další informace o tom, jak spustit jako v tomto příkladu najdete How to: Compile and Run the Automation Object Model Code Examples.

Sub DeleteExample(ByVal dte As DTE2)
    ' Add a new tab to the Toolbox.
    Dim box As ToolBox = dte.ToolWindows.ToolBox
    Dim tab As ToolBoxTab2 = CType(box.ToolBoxTabs.Add _
    ("Sample ToolBoxTab"), ToolBoxTab2)
    ' Add two ToolBoxItem objects to the new Toolbox tab.
    Dim item As ToolBoxItem = _
        tab.ToolBoxItems.Add("Text Item", "Hello, text item!")
    tab.ToolBoxItems.Add("HTML Item", "Hello, HTML item!", _
        vsToolBoxItemFormat.vsToolBoxItemFormatHTML)
    ' Select the "Text Item" ToolBox item.
    box.Parent.AutoHides = False
    box.Parent.Activate()
    tab.Activate()
    item.Select()
    If MsgBox("Delete the selected Toolbox item?", MsgBoxStyle.YesNo) _
        = MsgBoxResult.Yes Then
        item.Delete()
    End If
End Sub
public void DeleteExample(DTE2 dte)
{
    // Add a new tab to the Toolbox.
    ToolBox box = dte.ToolWindows.ToolBox;
    ToolBoxTab2 tab = (ToolBoxTab2)box.ToolBoxTabs.Add
("Sample ToolBoxTab");
    // Add two ToolBoxItem objects to the new Toolbox tab.
    ToolBoxItem item = tab.ToolBoxItems.Add("Text Item", 
        "Hello, text item!", 
        vsToolBoxItemFormat.vsToolBoxItemFormatText);
    tab.ToolBoxItems.Add("HTML Item", "Hello, HTML item!", 
        vsToolBoxItemFormat.vsToolBoxItemFormatHTML);
    // Select the "Text Item" ToolBox item.
    box.Parent.AutoHides = false;
    box.Parent.Activate();
    tab.Activate();
    item.Select();
    if (MessageBox.Show("Delete the selected Toolbox item?", "", 
        MessageBoxButtons.YesNo) == DialogResult.Yes)
        item.Delete();
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

ToolBoxTab2 Rozhraní

Delete – přetížení

EnvDTE80 – obor názvů