ComponentFactory.Krypton.Navigator.PageDragCancelEventArgs.PageDragCancelEventArgs C# (CSharp) Method

PageDragCancelEventArgs() public method

Initialize a new instance of the PageDragCancelEventArgs class.
public PageDragCancelEventArgs ( Point screenPoint, Point elementOffset, Control c, KryptonPage pages ) : System
screenPoint Point Screen point of the mouse.
elementOffset Point Offset from the top left of the element.
c System.Windows.Forms.Control Control that started the drag operation.
pages KryptonPage Array of event associated pages.
return System
        public PageDragCancelEventArgs(Point screenPoint,
                                       Point elementOffset,
                                       Control c,
                                       KryptonPage[] pages)
        {
            _screenPoint = screenPoint;
            _elementOffset = elementOffset;
            _c = c;
            _pages = new KryptonPageCollection();

            if (pages != null)
                _pages.AddRange(pages);
        }

Same methods

PageDragCancelEventArgs::PageDragCancelEventArgs ( Point screenPoint, Point elementOffset, Control c, KryptonPageCollection pages ) : System
PageDragCancelEventArgs