ISelectionService.SelectionChanging イベント
アセンブリ: System (system.dll 内)

Event SelectionChanging As EventHandler
Dim instance As ISelectionService Dim handler As EventHandler AddHandler instance.SelectionChanging, handler
event EventHandler SelectionChanging
event EventHandler^ SelectionChanging { void add (EventHandler^ value); void remove (EventHandler^ value); }
/** @event */ void add_SelectionChanging (EventHandler value) /** @event */ void remove_SelectionChanging (EventHandler value)


SelectionChanging イベントを使用する方法を次の例に示します。
' Add SelectionChanging event handler to event AddHandler m_selectionService.SelectionChanging, AddressOf OnSelectionChanging <br /><span space="preserve">...</span><br /> ' This is the OnSelectionChanging handler method. This method calls ' OnUserChange to display a message that indicates the name of the ' handler that made the call and the type of the event argument. Private Sub OnSelectionChanging(ByVal sender As Object, ByVal args As EventArgs) OnUserChange("OnSelectionChanging", args.ToString()) End Sub 'OnSelectionChanging
// Add SelectionChanging event handler to event m_selectionService.SelectionChanging += new EventHandler(OnSelectionChanging); <br /><span space="preserve">...</span><br /> /* This is the OnSelectionChanging handler method. This method calls OnUserChange to display a message that indicates the name of the handler that made the call and the type of the event argument. */ private void OnSelectionChanging(object sender, EventArgs args) { OnUserChange("OnSelectionChanging", args.ToString()); }
// Add SelectionChanging event handler to event m_selectionService->SelectionChanging += gcnew EventHandler( this, &ComponentClass::OnSelectionChanging ); <br /><span space="preserve">...</span><br /> /* This is the OnSelectionChanging handler method. This method calls OnUserChange to display a message that indicates the name of the handler that made the call and the type of the event argument. */ void OnSelectionChanging( Object^ /*sender*/, EventArgs^ args ) { OnUserChange( "OnSelectionChanging", args->ToString() ); }
// Add SelectionChanging event handler to event mSelectionService.add_SelectionChanging( new EventHandler(OnSelectionChanging)); <br /><span space="preserve">...</span><br /> /* This is the OnSelectionChanging handler method. This method calls OnUserChange to display a message that indicates the name of the handler that made the call and the type of the event argument. */ private void OnSelectionChanging(Object sender, EventArgs args) { OnUserChange("OnSelectionChanging", args.ToString()); } //OnSelectionChanging

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からISelectionService.SelectionChanging イベントを検索する場合は、下記のリンクをクリックしてください。

- ISelectionService.SelectionChanging イベントのページへのリンク