ARCed.UI.DockPanel.SplitterDragHandler.SplitterOutline.SetDragForm C# (CSharp) Method

SetDragForm() private method

private SetDragForm ( Rectangle rect ) : void
rect System.Drawing.Rectangle
return void
                private void SetDragForm(Rectangle rect)
                {
                    this.DragForm.Bounds = rect;
                    if (rect == Rectangle.Empty)
                        this.DragForm.Region = new Region(Rectangle.Empty);
                    else if (this.DragForm.Region != null)
                        this.DragForm.Region = null;
                }
DockPanel.SplitterDragHandler.SplitterOutline