Esempio n. 1
0
 short DxfLineType2PicGrp(netDxf.Tables.LineType lineType)
 {
     if (_lineType2GrpDictionary.ContainsKey(lineType))
     {
         return(_lineType2GrpDictionary[lineType]);
     }
     else
     {
         return(0);
     }
 }
Esempio n. 2
0
 public PicGraphics.LT DxfLineType2PicLT(netDxf.Tables.LineType lineType)
 {
     if (_lineTypeDictionary.ContainsKey(lineType))
     {
         return(_lineTypeDictionary[lineType]);
     }
     else
     {
         return(PicGraphics.LT.LT_CUT);
     }
 }