Freigeben über


Find.Parent-Eigenschaft

Ruft das unmittelbar übergeordnete Objekt eines Find-Objekts ab.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
ReadOnly Property Parent As DTE
DTE Parent { get; }
property DTE^ Parent {
    DTE^ get ();
}
abstract Parent : DTE with get
function get Parent () : DTE

Eigenschaftswert

Typ: EnvDTE.DTE
Ein DTE-Objekt.

Hinweise

Die Parent-Eigenschaft gibt das unmittelbar übergeordnete Element an das Find-Objekt zurück.

Beispiele

public void Example(DTE2 dte)
{
   try
      {
      TextDocument objTextDoc;
      EditPoint objEditPoint;
      Find objFind;

      // Make an active text document before running this code.
      objTextDoc = (TextDocument)dte.ActiveDocument.Object("TextDocument");

      // Create editpoint.
      objEditPoint = objTextDoc.StartPoint.CreateEditPoint();
      objEditPoint.Insert("An additional line" + (Char)13);

      // Create Find.
      objFind = objTextDoc.DTE.Find;

      // Set Find options and execute.
      objFind.Action = vsFindAction.vsFindActionFind;
      objFind.FindWhat = "line";
      if (objFind.Execute() == vsFindResult.vsFindResultFound)
         MessageBox.Show("Text found in " + objFind.Parent.FullName + " application.");
      else
         MessageBox.Show("Text not found" + objFind.Parent.FullName + " application.");

      // Show Find object DTE property.
      MessageBox.Show(objFind.DTE.Name);
   }
   catch (Exception ex)
   {
      MessageBox.Show(ex.Message);
   }
}

.NET Framework-Sicherheit

Siehe auch

Referenz

Find Schnittstelle

EnvDTE-Namespace

Weitere Ressourcen

Gewusst wie: Kompilieren und Ausführen der Codebeispiele für das Automatisierungsobjektmodell