3 writes to endDrag
System.Workflow.ComponentModel (3)
AuthoringOM\Design\MessageFilters\DragSelectionMessageFilter.cs (3)
49this.startDrag = this.endDrag = ParentView.ClientPointToLogical(new Point(eventArgs.X, eventArgs.Y)); 74this.endDrag = logicalPoint; 94this.endDrag = parentView.ClientPointToLogical(new Point(eventArgs.X, eventArgs.Y));
4 references to endDrag
System.Workflow.ComponentModel (4)
AuthoringOM\Design\MessageFilters\DragSelectionMessageFilter.cs (4)
134return new Rectangle(Math.Min(this.startDrag.X, this.endDrag.X), Math.Min(this.startDrag.Y, this.endDrag.Y), Math.Abs(this.endDrag.X - this.startDrag.X), Math.Abs(this.endDrag.Y - this.startDrag.Y));