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 の場合、ウィンドウのコンテキスト バッグに作用します。ツール ウィンドウの場合、各属性はウィンドウにフォーカスがあるときにだけ有効です。エディタとデザイナの場合、エディタが最後にアクティブな 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