System.Windows.Forms.ScrollEventArgs.ScrollEventArgs C# (CSharp) Method

ScrollEventArgs() public method

public ScrollEventArgs ( ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll ) : System
type ScrollEventType
oldValue int
newValue int
scroll ScrollOrientation
return System
        public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll)
        {
            _scrollType = type;
            _oldValue = oldValue;
            NewValue = newValue;
            _scrollOrientation = scroll;
        }

Same methods

ScrollEventArgs::ScrollEventArgs ( ScrollEventType type, int newValue ) : System
ScrollEventArgs::ScrollEventArgs ( ScrollEventType type, int newValue, ScrollOrientation scroll ) : System
ScrollEventArgs::ScrollEventArgs ( ScrollEventType type, int oldValue, int newValue ) : System
ScrollEventArgs