Ejemplo n.º 1
0
 public AddMidPointAction(PathMidPointDrawable point)
 {
     this.isApplied = true;
     this.Midpoint = point;
     this.Parent = point.Path;
     for (int i = 0; i < Parent.UserDefinedMidPoints.Count; i++)
     {
         if (Parent.UserDefinedMidPoints[i] == Midpoint)
         {
             this.Index = i;
             break;
         }
     }
 }
Ejemplo n.º 2
0
 public RemoveConnection(ConnectionZone.Path connection) : base(connection)
 {
 }
Ejemplo n.º 3
0
 public AddConnection(ConnectionZone.Path connection)
 {
     this.Connection = connection;
 }