ToolBoxTab3.UniqueID Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen sekme için benzersiz bir KIMLIK ayarlar veya alır.
public:
property System::String ^ UniqueID { System::String ^ get(); void set(System::String ^ value); };
public:
property Platform::String ^ UniqueID { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(9)]
public string UniqueID { [System.Runtime.InteropServices.DispId(9)] get; [System.Runtime.InteropServices.DispId(9)] set; }
[<System.Runtime.InteropServices.DispId(9)>]
[<get: System.Runtime.InteropServices.DispId(9)>]
[<set: System.Runtime.InteropServices.DispId(9)>]
member this.UniqueID : string with get, set
Public Property UniqueID As String
Özellik Değeri
Sekme için benzersiz bir KIMLIK dizesi.
Uygulamalar
- Öznitelikler
Örnekler
Bu örnek, ilk öğeyi seçer ve etkinleştirir ToolBoxTab3 ve adı ve benzersiz adını bir ileti kutusunda görüntüler.
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Sub ToolBoxTabUniqueIDExample(ByVal dte As DTE2)
Dim tlBox As ToolBox
Dim tbxTabs As ToolBoxTabs
Dim tbxTab As ToolBoxTab3
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), ToolBoxTab2)
MsgBox(tbxTab.Name)
tbxTab.Activate()
MsgBox("The unique ID of the Toolbox tab: " _
& tbxTab.Name & " is " & tbxTab.UniqueID)
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 ToolBoxTabUniqueIDExample(DTE2 dte)
{
ToolBox tlBox;
ToolBoxTabs tbxTabs;
ToolBoxTab3 tbxTab;
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 = (ToolBoxTab2)tbxTabs.Item(1);
MessageBox.Show("The name of the selected Toolbox tab is: "
+ tbxTab.Name);
tbxTab.Activate();
MessageBox.Show("The unique ID of the Toolbox tab: "
+ tbxTab.Name + " is " + tbxTab.UniqueID);
}
catch (Exception ex)
{
MessageBox.Show("ERROR: " + ex.Message);
}
}