public EdgeKeysEventArgs(
     IEdge e,
     EdgePort sourcePort,
     EdgePort targetPort,
     NGraphviz.Layout.Collections.PointFCollection keys
     )
 {
     if (e==null)
         throw new ArgumentNullException("e");
     this.edge = e;
     this.keys = keys;
     this.sourcePort = sourcePort;
     this.targetPort = targetPort;
 }
Example #2
0
 public EdgeKeysEventArgs(
     IEdge e,
     EdgePort sourcePort,
     EdgePort targetPort,
     NGraphviz.Layout.Collections.PointFCollection keys
     )
 {
     if (e == null)
     {
         throw new ArgumentNullException("e");
     }
     this.edge       = e;
     this.keys       = keys;
     this.sourcePort = sourcePort;
     this.targetPort = targetPort;
 }