ToolBoxTab3, interface
Représente un onglet dans la Boîte à outils, avec tous les objets contenus dans l'onglet. ToolBoxTab3 remplace les interfaces ToolBoxTab et ToolBoxTab2.
Espace de noms : EnvDTE90
Assembly : EnvDTE90 (dans EnvDTE90.dll)
Syntaxe
'Déclaration
<GuidAttribute("09D8476F-E6BF-46FB-A0A9-61C331B90F06")> _
Public Interface ToolBoxTab3 _
Inherits ToolBoxTab2
[GuidAttribute("09D8476F-E6BF-46FB-A0A9-61C331B90F06")]
public interface ToolBoxTab3 : ToolBoxTab2
[GuidAttribute(L"09D8476F-E6BF-46FB-A0A9-61C331B90F06")]
public interface class ToolBoxTab3 : ToolBoxTab2
[<GuidAttribute("09D8476F-E6BF-46FB-A0A9-61C331B90F06")>]
type ToolBoxTab3 =
interface
interface ToolBoxTab2
end
public interface ToolBoxTab3 extends ToolBoxTab2
Le type ToolBoxTab3 expose les membres suivants.
Propriétés
Nom | Description | |
---|---|---|
Collection | Obtient la collection contenant l'objet ToolBoxTab qui prend en charge cette propriété. | |
DTE | Obtient l'objet d'extensibilité de niveau supérieur. | |
Expanded | Obtient ou indique si l'onglet Boîte à outils est affiché ou reporté. | |
ListView | Obtient ou définit une valeur indiquant si les éléments d'un onglet Boîte à outils spécifique s'affichent dans la vue Liste ou Icônes. | |
Name | Obtient ou définit le nom de l'objet ToolBoxTab3. | |
ToolBoxItems | Obtient la collection ToolBoxItems associée à un ToolBoxTab3. | |
UniqueID | Définit ou obtient un ID unique pour l'onglet spécifié. |
Début
Méthodes
Nom | Description | |
---|---|---|
Activate | Déplace le focus vers l'élément actif. | |
Delete | Supprime le ToolBoxTab3 d'une collection. |
Début
Exemples
Cet exemple sélectionne et active le premier élément ToolBoxTab3 et affiche son nom dans une boîte de message. Pour plus d'informations sur l'exécution de cet exemple comme complément, consultez Comment : compiler et exécuter les exemples de code du modèle objet Automation.
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
ToolBoxTabExample(_applicationObject)
End Sub
Sub ToolBoxTabExample(ByVal dte As DTE2)
Dim tlBox As ToolBox
Dim tbxTabs As ToolBoxTabs
Dim tbxTab As ToolBoxTab3
Dim tbxItem As ToolBoxItem
Try
' Create an object reference to the IDE's ToolBox object and
' its tabs.
tlBox = CType(_applicationObject.Windows.Item _
(Constants.vsWindowKindToolbox).Object, ToolBox)
tbxTabs = tlBox.ToolBoxTabs
' Select the first Toolbox tab.
tbxTab = CType(tbxTabs.Item(1), ToolBoxTab3)
MsgBox(tbxTab.Name)
tbxTab.Activate()
tbxItem = tbxTab.ToolBoxItems.Item(1)
MsgBox("Toolbox item name: " & tbxItem.Name)
Catch ex As System.Exception
MsgBox("ERROR: " & ex.Message)
End Try
End Sub
using EnvDTE;
using EnvDTE80;
using EnvDTE90;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
ToolBoxTabExample(_applicationObject);
}
public void ToolBoxTabExample(DTE2 dte)
{
ToolBox tlBox;
ToolBoxTabs tbxTabs;
ToolBoxTab3 tbxTab;
ToolBoxItem tbxItem;
try
{
// Create an object reference to the IDE's ToolBox object and
// its tabs.
tlBox = (ToolBox)_applicationObject.Windows.Item
(Constants.vsWindowKindToolbox).Object;
tbxTabs = tlBox.ToolBoxTabs;
// Select the first Toolbox Tab.
tbxTab = (ToolBoxTab3)tbxTabs.Item(1);
MessageBox.Show("The name of the first Toolbox tab is: "
+ tbxTab.Name);
tbxTab.Activate();
tbxItem = tbxTab.ToolBoxItems.Item(1);
MessageBox.Show("Toolbox item name: " + tbxItem.Name);
}
catch (Exception ex)
{
MessageBox.Show("ERROR: " + ex.Message);
}
}