37 references to Bottom
System.Workflow.Activities (3)
Designers\StateDesigner.cs (3)
1091
if ((edges & DesignerEdges.
Bottom
) > 0)
1092
connectionPoints.Add(new ConnectionPoint(this, DesignerEdges.
Bottom
, 0));
1124
if ((edges & DesignerEdges.
Bottom
) > 0)
System.Workflow.ComponentModel (34)
AuthoringOM\Design\ActivityDesigner.cs (4)
1000
if ((edges & DesignerEdges.
Bottom
) > 0)
1002
for (int i = 0; i < GetConnections(DesignerEdges.
Bottom
).Count; i++)
1003
connectionPoints.Add(new ConnectionPoint(this, DesignerEdges.
Bottom
, i));
1188
if ((edges & DesignerEdges.
Bottom
) > 0)
AuthoringOM\Design\Connector.cs (9)
107
designerEdge != DesignerEdges.Top && designerEdge != DesignerEdges.
Bottom
)
1702
designerEdgeCover.Add(DesignerEdges.
Bottom
, new Point[] { new Point(bounds.Left, bounds.Bottom), new Point(bounds.Right, bounds.Bottom) });
1760
else if (designerEdge == DesignerEdges.
Bottom
)
2024
ConnectorSegment bottomCover = coverSet.GetCover(Z, DesignerEdges.
Bottom
);
2212
ConnectorSegment lesserCover = coverSet.GetCover(Z, (orientation == Orientation.Horizontal) ? DesignerEdges.Left : DesignerEdges.
Bottom
);
2246
side = (direction.Y < 0) ? DesignerEdges.
Bottom
: DesignerEdges.Top;
2750
ConnectorSegment bottomCover = coverSet.GetCover(p, DesignerEdges.
Bottom
);
2914
int currentDistance = (side == DesignerEdges.
Bottom
) ? p.Y - segment.A.Y : segment.A.Y - p.Y;
2949
int currentDistance = (side == DesignerEdges.
Bottom
) ? p.Y - segment.A.Y : segment.A.Y - p.Y;
AuthoringOM\Design\DesignerHelpers.cs (3)
559
if ((edgeToInflate & DesignerEdges.
Bottom
) > 0)
1857
if ((edgesToConsider & DesignerEdges.
Bottom
) > 0)
1860
edges.Add(DesignerEdges.
Bottom
);
AuthoringOM\Design\MessageFilters\ResizingMessageFilter.cs (5)
123
((sizingEdge & DesignerEdges.Right) > 0 && (sizingEdge & DesignerEdges.
Bottom
) > 0))
128
((sizingEdge & DesignerEdges.Left) > 0 && (sizingEdge & DesignerEdges.
Bottom
) > 0))
132
else if ((sizingEdge & DesignerEdges.Top) > 0 || (sizingEdge & DesignerEdges.
Bottom
) > 0)
202
sizingEdge |= DesignerEdges.
Bottom
;
310
if ((sizingEdge & DesignerEdges.
Bottom
) > 0)
AuthoringOM\Design\ParallelActivityDesigner.cs (6)
220
ReadOnlyCollection<Point> connectionPoints = GetInnerConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
343
ReadOnlyCollection<Point> firstDesignerConnections = firstDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
346
ReadOnlyCollection<Point> lastDesignerConnections = lastDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
380
ReadOnlyCollection<Point> designerConnections = activityDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
431
ReadOnlyCollection<Point> firstDesignerConnections = firstDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
447
ReadOnlyCollection<Point> lastDesignerConnections = lastDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
AuthoringOM\Design\SequentialActivityDesigner.cs (6)
190
ReadOnlyCollection<Point> containerConnections = GetInnerConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
203
ReadOnlyCollection<Point> startDesignerConnections = startDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
223
ReadOnlyCollection<Point> designerFromConnections = designerFrom.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
225
ReadOnlyCollection<Point> designerToConnections = designerTo.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
233
ReadOnlyCollection<Point> endDesignerConnections = endDesigner.GetConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
445
ReadOnlyCollection<Point> connectionPoints = GetInnerConnections(DesignerEdges.Top | DesignerEdges.
Bottom
);
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (1)
260
if (connectionPoints.Count > 0 && Footer != null && (edges & DesignerEdges.
Bottom
) > 0)