VSProjectEvents2.ImportsEvents プロパティ
Imports オブジェクトのイベントへのアクセスを可能にする ImportsEvents オブジェクトを取得します。
名前空間: VSLangProj80
アセンブリ: VSLangProj80 (VSLangProj80.dll 内)
構文
'宣言
ReadOnly Property ImportsEvents As ImportsEvents
ImportsEvents ImportsEvents { get; }
property ImportsEvents^ ImportsEvents {
ImportsEvents^ get ();
}
abstract ImportsEvents : ImportsEvents
function get ImportsEvents () : ImportsEvents
プロパティ値
型 : VSLangProj.ImportsEvents
ImportsEvents オブジェクト。
解説
ImportsEvents オブジェクトを使用すると、ImportAdded と ImportRemoved の 2 つのイベントにアクセスできます。
例
Events オブジェクトを使用して、特定のプロジェクトの ImportAdded イベントおよび ImportRemoved イベントに、イベント処理メソッドを関連付ける例を次に示します。マクロ サンプルの実行方法の詳細については、「方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する」を参照してください。
このマクロを実行する前に、Visual Basic、Visual C#、または Visual J# プロジェクトを開いておきます。
' Macro editor
' This example adds event handlers to the two events in
' ImportsEvents.
Imports VSLangProj
Imports VSLangProj80
Sub ImportAdded(ByVal addedImport As String)
MsgBox("The import '" & addedImport & "' was added.")
End Sub
Sub ImportRemoved(ByVal removedImport As String)
MsgBox("The import '" & removedImport & "' was removed.")
End Sub
Sub ConnectImportsEvents()
Dim proj As Project = DTE.Solution.Projects.Item(1)
Dim vsproj As VSProject2 = CType(proj.Object, VSProject2)
Dim impEvents As ImportsEvents = vsproj.Events.ImportsEvents
AddHandler impEvents.ImportAdded, AddressOf ImportAdded
AddHandler impEvents.ImportRemoved, AddressOf ImportRemoved
End Sub
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。