2012-03-16 67 views
2

我正在創建一個Visio圖表,但需要檢查現有形狀是否連接。我用三種不同的方法來編寫一個方法來確定這一點。我無法找到任何形狀方法直接做到這一點。這是我想出來的。我比第三種方法更可取,因爲它不涉及迭代。還有什麼建議?Visio - 檢查如果形狀連接

private bool ShapesAreConnected(Visio.Shape shape1, Visio.Shape shape2) 
    { 
    // in Visio our 2 shapes will each be connected to a connector, not to each other 
    // so we need to see if theyare both connected to the same connector 

     bool Connected = false; 
     // since we are pinning the connector to each shape, we only need to check 
     // the fromshapes attribute on each shape 
     Visio.Connects shape1FromConnects = shape1.FromConnects; 
     Visio.Connects shape2FromConnects = shape2.FromConnects; 

     foreach (Visio.Shape connect in shape1FromConnects) 
     { 
      // first method 
      // for each shape shape 1 is connected to, see if shape2 is connected 
      var shape = from Visio.Shape cs in shape2FromConnects where cs == connect select cs; 
      if (shape.FirstOrDefault() != null) Connected = true; 

      // second method, convert shape2's connected shapes to an IEnumerable and 
      // see if it contains any shape1 shapes 
      IEnumerable<Visio.Shape> shapesasie = (IEnumerable<Visio.Shape>)shape2FromConnects; 


      if (shapesasie.Contains(connect)) 
      { 
       return true; 
      } 
     } 

     return Connected; 

     //third method 
     //convert both to IEnumerable and check if they intersect 
     IEnumerable<Visio.Shape> shapes1asie = (IEnumerable<Visio.Shape>)shape1FromConnects; 
     IEnumerable<Visio.Shape> shapes2asie = (IEnumerable<Visio.Shape>)shape2FromConnects; 
     var shapes = shapes1asie.Intersect(shapes2asie); 
     if (shapes.Count() > 0) { return true; } 
     else { return false; } 

    } 

回答