Base:
property
Location
System.Workflow.ComponentModel.Design.FreeformActivityDesigner.Location
4 writes to Location
System.Workflow.Activities (4)
Designers\StateDesigner.cs (4)
544this.Location = _stateLocation; 1454stateDesigner.Location = new Point(location.X, location.Y + deltaY); 1456stateDesigner.Location = new Point(location.X, location.Y + moveBounds.Height + DefaultStateDesignerAutoLayoutDistance - freeSpaceHeight); 1484stateDesigner.Location = new Point(x, y);
11 references to Location
System.Workflow.Activities (11)
Designers\StateDesigner.cs (11)
549_stateLocation = this.Location; 1377this.RootDesignerLayout.Location = this.Location; 1424if (stateDesigner.Location.Y < minimumY) 1426deltaY = Math.Max(deltaY, minimumY - stateDesigner.Location.Y); 1434freeSpaceHeight = Math.Min(freeSpaceHeight, stateDesigner.Location.Y - minimumY); 1452Point location = stateDesigner.Location; 1453if (stateDesigner.Location.Y < minimumY) 1482int x = this.Location.X + DefaultStateDesignerAutoLayoutDistance; 1503bounds.Offset(Separator.Width - this.Location.X, Separator.Height - this.Location.Y); 2297value = (ActiveDesigner == null) ? Location : this._stateLocation;