ARCed.UI.DockPanel.DockDragHandler.DockOutline.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;
                }

Same methods

DockPanel.DockDragHandler.DockOutline::SetDragForm ( Rectangle rect, Region region ) : void