Solution3.Parent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the immediate parent object of a Solution2 object.
public:
property EnvDTE::DTE ^ Parent { EnvDTE::DTE ^ get(); };
public:
property EnvDTE::DTE ^ Parent { EnvDTE::DTE ^ get(); };
[System.Runtime.InteropServices.DispId(11)]
public EnvDTE.DTE Parent { [System.Runtime.InteropServices.DispId(11)] get; }
[<System.Runtime.InteropServices.DispId(11)>]
[<get: System.Runtime.InteropServices.DispId(11)>]
member this.Parent : EnvDTE.DTE
Public ReadOnly Property Parent As DTE
Property Value
A DTE object.
Implements
- Attributes
Examples
Sub IsOpenExample(ByVal dte As DTE2)
' Display the parent of the solution.
' Open a solution in Visual Studio before running this example.
Try
Dim soln As Solution3 = CType(_applicationObject.Solution, _
Solution3)
Dim solnName As String = _
System.IO.Path.GetFileNameWithoutExtension(soln.FullName)
MsgBox("Solution " & solnName & _
" has the following parent:" & _
vbCrLf & vbCrLf & soln.Parent.FullName)
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
using System.Windows.Forms;
public void ParentExample(DTE2 dte)
{
// Display the name of the parent for a solution.
// Open a solution in Visual Studio before running this example.
try
{
Solution3 soln = (Solution3)_applicationObject.Solution;
string solnName =
System.IO.Path.GetFileNameWithoutExtension(soln.FullName);
MessageBox.Show("Solution " + solnName + "'s parent is: "
+ soln.Parent.FullName.ToString());
}
catch(SystemException ex)
{
MessageBox.Show("ERROR: " + ex);
}
}
Remarks
The Parent property returns the immediate parent to the object.