Ejemplo n.º 1
0
 public static bool IsFrameInPlace(Element elem)
 {
     return
         (AGCFrameBase.IsFrame(elem) &&
          elem.Location is LocationPoint &&
          !AGCFrameCurveDriven.TypicalFramingParametersExist(elem));
 }
Ejemplo n.º 2
0
 public static bool IsFrameCurveDriven(Element elem)
 {
     return
         (AGCFrameBase.IsFrame(elem) &&
          TypicalFramingParametersExist(elem));
 }