[Visual Basic]
Public Class MouseWheelEventArgs Inherits EventArgs
[C#]
public class MouseWheelEventArgs: EventArgs
解説
プロパティ | 型 | 説明 |
---|---|---|
![]() |
integer (Visual Basic) int(C#) |
押されたボタンの種類を取得します。(16進表記) 0x0001: マウスの左ボタン 0x0002: マウスの右ボタン 0x0004: Shiftキー 0x0008: Ctrlキー 0x0010: マウスの中央ボタン ※ 複数のボタンが押された場合は上記の値の論理和となります。 ※ Visual Basicは0xを&Hに置き換えてください。 |
![]() |
WheelDirection (Visual Basic) WheelDirection(C#) |
スクロールする方向(Vertical: 垂直方向, Horizontal: 水平方向)を取得します。 |
DirectionはMouseWheelプロパティで設定した値となります。
参照
ImageKit メンバ | Newtone.ImageKit.WPF.ImageKit