Freigeben über


ContextAttributes-Schnittstelle

Aktualisiert: November 2007

Enthält alle Attribute, die mit einem globalen Kontext oder einem Fensterkontext im Fenster Dynamische Hilfe verknüpft sind.

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

Syntax

<GuidAttribute("33C5EBB8-244E-449D-9CEE-FAD70A774E59")> _
Public Interface ContextAttributes _
    Implements IEnumerable

Dim instance As ContextAttributes
[GuidAttribute("33C5EBB8-244E-449D-9CEE-FAD70A774E59")]
public interface ContextAttributes : IEnumerable
[GuidAttribute(L"33C5EBB8-244E-449D-9CEE-FAD70A774E59")]
public interface class ContextAttributes : IEnumerable
public interface ContextAttributes extends IEnumerable

Hinweise

Bei DTE.ContextAttributes betrifft dies die globale Kontextsammlung, die die niedrigste Rangordnung beim Sortieren von Themen besitzt.

Bei Window.ContextAttributes ist nur die Kontextsammlung für ein Fenster betroffen. Bei Toolfenstern sind die Attribute nur dann wirksam, wenn das Fenster den Fokus besitzt. Bei Editoren und Designern sind die Attribute wirksam, solang der Editor als letztes untergeordnetes MDI-Element aktiv ist. Wenn für die HighPriorityAttributes-Eigenschaft der Wert true festgelegt ist, sind die Attribute immer aktiv und besitzen die höchste Priorität.

Nach dem Abrufen einer ContextAttributes-Auflistung müssen Sie ContextAttributes.Refresh aufrufen, um sicherzustellen, dass die Attributauflistung auf dem neuesten Stand ist, was durch einfaches Abrufen des Objekts nicht gewährleistet wird. Beim Hinzufügen und Entfernen von Attributen wird die ContextAttributes-Auflistung jedoch implizit aktualisiert, sodass es sich bei dem Ergebnis des jeweiligen Vorgangs stets um den aktuellen Zustand handelt.

Beispiele

Sub ContextAttributesExample()
   ' Get a reference to Solution Explorer.
   Dim SolnEx As Window = DTE.Windows.Item _
   (Constants.vsWindowKindSolutionExplorer)
   Dim CA As ContextAttribute

   ' List the current attributes associated with Solution Explorer.
   ListAttr(SolnEx, CA)

   ' Associate a new F1 keyword with Solution Explorer.
   SolnEx.ContextAttributes.Add("ANewKeyword", 900, _
   vsContextAttributeType.vsContextAttributeLookupF1)
   ListAttr(SolnEx, CA)

   ' Delete the new F1 keyword from Solution Explorer.
   SolnEx.ContextAttributes.Item(3).Remove()
   ListAttr(SolnEx, CA)
End Sub

Sub ListAttr(ByVal SolnEx As Object, ByVal CA As ContextAttribute)
   ' Support function for CATest(). Lists the current attributes 
   ' associated with Solution Explorer.
   Dim msg As String

   MsgBox("Number of context attributes in Solution Explorer: " & _
   SolnEx.ContextAttributes.Count)
   For Each CA In SolnEx.ContextAttributes
      msg = msg & CA.Name & Chr(13)
   Next
   MsgBox(msg)
   msg = ""
End Sub

Siehe auch

Referenz

ContextAttributes-Member

EnvDTE-Namespace