Debugger3::Parent Property
Visual Studio 2015
Namespace:
EnvDTE90
Assembly: EnvDTE90 (in EnvDTE90.dll)
Return to top
Assembly: EnvDTE90 (in EnvDTE90.dll)
Implements
Debugger2::ParentThe Parent property returns the immediate parent to the object.
The following example shows how to use the Parent property.
public static void Parent(EnvDTE80.DTE2 dte) { // Setup debug Output window. Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput); w.Visible = true; OutputWindow ow = (OutputWindow)w.Object; OutputWindowPane owp = ow.OutputWindowPanes.Add("Parent Property Test"); owp.Activate(); EnvDTE90.Debugger3 debugger = (EnvDTE90.Debugger3)dte.Debugger; owp.OutputString("The name of the debugger parent: " + debugger.Parent.Name); }
Show: