ARCed.UI.DockPanel.SplitterDragHandler.BeginDrag C# (CSharp) Method

BeginDrag() public method

public BeginDrag ( ISplitterDragSource dragSource, Rectangle rectSplitter ) : void
dragSource ISplitterDragSource
rectSplitter System.Drawing.Rectangle
return void
            public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter)
            {
                this.DragSource = dragSource;
                this.RectSplitter = rectSplitter;

                if (!BeginDrag())
                {
                    this.DragSource = null;
                    return;
                }

                this.Outline = new SplitterOutline();
                this.Outline.Show(rectSplitter);
                this.DragSource.BeginDrag(rectSplitter);
            }