GrapeCity SPREAD for Windows Forms 11.0J
MouseMove イベント


カーソルが要素の上に置かれた状態でユーザーがカーソルを移動すると発生します。
構文
'Declaration
 
Public Event MouseMove As MouseEventHandler
'使用法
 
Dim instance As ElementWindowless
Dim handler As MouseEventHandler
 
AddHandler instance.MouseMove, handler
public event MouseEventHandler MouseMove
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、MouseEventArgs 型の引数を受け取りました。次の MouseEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ説明
ButtonGets which mouse button was pressed.  
ClicksGets the number of times the mouse button was pressed and released.  
DeltaGets a signed count of the number of detents the mouse wheel has rotated, multiplied by the WHEEL_DELTA constant. A detent is one notch of the mouse wheel.  
LocationGets the location of the mouse during the generating mouse event.  
XGets the x-coordinate of the mouse during the generating mouse event.  
YGets the y-coordinate of the mouse during the generating mouse event.  
解説

MouseMoveイベントは、ポインタが要素間を移動するときに連続的に生成されます。別の要素がマウスをキャプチャしないかぎり、要素はポインタが境界線内にあるとき常にMouseMoveイベントを認識します。

マウスボタンの押し下げおよび解放によって発生したイベントに応答するには、MouseDownイベントとMouseUpイベントを使用します。

参照

ElementWindowless クラス
ElementWindowless メンバ
MouseDown イベント
MouseUp イベント

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.