private static extern bool GetScrollInfo(IntPtr hWnd, int fnBar, ref SCROLLINFO info);
        /// <summary>
        /// Initializes a new instance of the MozItemEventArgs class with default settings
        /// </summary>

        public MozScrollEventArgs(ScrollEventType type, int newValue, SCROLLINFO info)
        {
            m_type     = type;
            m_newValue = newValue;
            m_info     = info;
        }