BlisterUI.Input.MouseWheelEventArgs.MouseWheelEventArgs C# (CSharp) 메소드

MouseWheelEventArgs() 공개 메소드

public MouseWheelEventArgs ( int wParam ) : System
wParam int
리턴 System
        public MouseWheelEventArgs(int wParam)
        {
            unchecked {
                deltas = (wParam & (int)0xffff0000) >> 16;
            }
        }
MouseWheelEventArgs