Window2.Object-Eigenschaft
Ruft ein Objekt ab, auf das zur Laufzeit über den Namen zugegriffen werden kann.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
ReadOnly Property Object As Object
Object Object { get; }
property Object^ Object {
Object^ get ();
}
abstract Object : Object with get
function get Object () : Object
Eigenschaftswert
Typ: Object
Ein Objekt.
Hinweise
Gibt das Erweiterbarkeitsobjekt des Tools zurück, das im Fenster dargestellt wird.
Beispiele
In diesem Beispiel wird ein OutputWindow-Objekt erstellt, und anschließend wird damit Text in ein OutputWindowPane-Objekt geschrieben.
Weitere Informationen zum Ausführen dieses Beispiels als Add-In finden Sie unter Gewusst wie: Kompilieren und Ausführen der Codebeispiele für das Automatisierungsobjektmodell.
Imports EnvDTE
Imports EnvDTE80
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)
ObjectExample(_applicationObject)
End Sub
Sub ObjectExample(ByVal dte As DTE2)
Dim win As Window2
win = _
CType(_applicationObject.Windows.Item _
(Constants.vsWindowKindOutput), Window2)
Dim output As OutputWindow
Dim outpane As OutputWindowPane
output = CType(win.Object(), OutputWindow)
outpane = output.OutputWindowPanes.Add("my output")
outpane.OutputString("Add test text to an Ouput _
pane obtained from the Window2.Object.")
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
ObjectExample(_applicationObject);
}
public void ObjectExample (DTE2 dte)
{
Window2 win;
win =
(Window2)_applicationObject.Windows.Item
(Constants.vsWindowKindOutput);
OutputWindow output;
OutputWindowPane outpane;
output = (OutputWindow)win.Object;
outpane = output.OutputWindowPanes.Add("My Output");
outpane.OutputString("Add test text to an Ouput pane
obtained from the Window2.Object.");
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.