19 references to segments
System.Workflow.ComponentModel (19)
AuthoringOM\Design\Connector.cs (19)
297
if (this.
segments
.Count == 0 || this.
segments
[0] != this.source.Location)
300
connectorSegments.AddRange(this.
segments
);
302
if (this.
segments
.Count == 0 || this.
segments
[this.
segments
.Count - 1] != this.target.Location)
345
for (int i = 0; i < this.
segments
.Count; i++)
346
this.
segments
[i] = new Point(this.
segments
[i].X + size.Width, this.
segments
[i].Y + size.Height);
417
this.
segments
.Clear();
418
this.
segments
.AddRange(segments);
426
if (this.
segments
.Count > 0 &&
427
(this.
segments
[0] != Source.Location || this.
segments
[this.
segments
.Count - 1] != Target.Location))
433
this.
segments
.Clear();
434
this.
segments
.AddRange(newSegments);
726
return this.
segments
;