ContextAttributes 介面
更新:2007 年 11 月
包含與 [動態說明] 視窗中之全域內容或視窗內容關聯的所有屬性。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
<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
備註
用於 DTE.ContextAttributes 時,這會影響在排序主題時優先順序最低的全域內容包。
用於 Window.ContextAttributes 時,這會影響視窗的內容包。用於工具視窗時,只有在視窗擁有焦點時,這些屬性 (Attribute) 才會生效。用於編輯器和設計工具時,只要編輯器是最後一個作用中的 MDI 子系,屬性就會生效。如果 HighPriorityAttributes 屬性設定為 true,這些屬性一律會生效,而且擁有最高的優先順序。
取得 ContextAttributes 集合後,您必須呼叫 ContextAttributes.Refresh 以確保更新屬性集合,因為只擷取物件並不會更新。然而,新增和移除屬性就會隱含地重新整理 ContextAttributes 集合,使新增或移除作業的結果是最新的。
範例
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