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

ScrollEventArgs() public method

public ScrollEventArgs ( ScrollEventType type, int newValue ) : System
type ScrollEventType
newValue int
return System
        public ScrollEventArgs(ScrollEventType type, int newValue)
        {
            _scrollType = type;
            NewValue = newValue;
        }

Same methods

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