示例#1
0
 private void InitContinuous()
 {
     Init();
     lineTypeName  = "Continuous";
     flag          = "     0";
     description   = "Solid Line";
     alignmentCode = "    65";
     elementCount  = "      0";
     patternLen    = "0.0";
     lineType      = new DxfLineType(LineTypeEnum.CONTINUOUS);
 }
示例#2
0
 private void InitDash()
 {
     Init();
     lineTypeName  = "Dashed";
     flag          = "     0";
     description   = "Dashed Line";
     alignmentCode = "    65";
     elementCount  = "      0";
     patternLen    = "0.0";
     lineType      = new DxfLineType(LineTypeEnum.DASH);
 }