@mlightcad/data-model 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (301) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +116 -0
  3. package/dist/data-model.js +19887 -0
  4. package/dist/data-model.umd.cjs +5 -0
  5. package/lib/base/AcDbHostApplicationServices.d.ts +30 -0
  6. package/lib/base/AcDbHostApplicationServices.d.ts.map +1 -0
  7. package/lib/base/AcDbHostApplicationServices.js +54 -0
  8. package/lib/base/AcDbHostApplicationServices.js.map +1 -0
  9. package/lib/base/AcDbObject.d.ts +70 -0
  10. package/lib/base/AcDbObject.d.ts.map +1 -0
  11. package/lib/base/AcDbObject.js +113 -0
  12. package/lib/base/AcDbObject.js.map +1 -0
  13. package/lib/base/index.d.ts +3 -0
  14. package/lib/base/index.d.ts.map +1 -0
  15. package/lib/base/index.js +3 -0
  16. package/lib/base/index.js.map +1 -0
  17. package/lib/converter/AcDbBatchProcessing.d.ts +43 -0
  18. package/lib/converter/AcDbBatchProcessing.d.ts.map +1 -0
  19. package/lib/converter/AcDbBatchProcessing.js +165 -0
  20. package/lib/converter/AcDbBatchProcessing.js.map +1 -0
  21. package/lib/converter/AcDbDxfConverter.d.ts +39 -0
  22. package/lib/converter/AcDbDxfConverter.d.ts.map +1 -0
  23. package/lib/converter/AcDbDxfConverter.js +567 -0
  24. package/lib/converter/AcDbDxfConverter.js.map +1 -0
  25. package/lib/converter/AcDbDxfParseWorker.d.ts +2 -0
  26. package/lib/converter/AcDbDxfParseWorker.d.ts.map +1 -0
  27. package/lib/converter/AcDbDxfParseWorker.js +6 -0
  28. package/lib/converter/AcDbDxfParseWorker.js.map +1 -0
  29. package/lib/converter/AcDbEntitiyConverter.d.ts +36 -0
  30. package/lib/converter/AcDbEntitiyConverter.d.ts.map +1 -0
  31. package/lib/converter/AcDbEntitiyConverter.js +491 -0
  32. package/lib/converter/AcDbEntitiyConverter.js.map +1 -0
  33. package/lib/converter/AcDbObjectConverter.d.ts +9 -0
  34. package/lib/converter/AcDbObjectConverter.d.ts.map +1 -0
  35. package/lib/converter/AcDbObjectConverter.js +30 -0
  36. package/lib/converter/AcDbObjectConverter.js.map +1 -0
  37. package/lib/converter/index.d.ts +3 -0
  38. package/lib/converter/index.d.ts.map +1 -0
  39. package/lib/converter/index.js +3 -0
  40. package/lib/converter/index.js.map +1 -0
  41. package/lib/database/AcDbBlockTable.d.ts +15 -0
  42. package/lib/database/AcDbBlockTable.d.ts.map +1 -0
  43. package/lib/database/AcDbBlockTable.js +46 -0
  44. package/lib/database/AcDbBlockTable.js.map +1 -0
  45. package/lib/database/AcDbBlockTableRecord.d.ts +49 -0
  46. package/lib/database/AcDbBlockTableRecord.d.ts.map +1 -0
  47. package/lib/database/AcDbBlockTableRecord.js +108 -0
  48. package/lib/database/AcDbBlockTableRecord.js.map +1 -0
  49. package/lib/database/AcDbDatabase.d.ts +211 -0
  50. package/lib/database/AcDbDatabase.d.ts.map +1 -0
  51. package/lib/database/AcDbDatabase.js +395 -0
  52. package/lib/database/AcDbDatabase.js.map +1 -0
  53. package/lib/database/AcDbDatabaseConverter.d.ts +120 -0
  54. package/lib/database/AcDbDatabaseConverter.d.ts.map +1 -0
  55. package/lib/database/AcDbDatabaseConverter.js +376 -0
  56. package/lib/database/AcDbDatabaseConverter.js.map +1 -0
  57. package/lib/database/AcDbDatabaseConverterManager.d.ts +59 -0
  58. package/lib/database/AcDbDatabaseConverterManager.d.ts.map +1 -0
  59. package/lib/database/AcDbDatabaseConverterManager.js +98 -0
  60. package/lib/database/AcDbDatabaseConverterManager.js.map +1 -0
  61. package/lib/database/AcDbDatabaseConverterRegister.d.ts +54 -0
  62. package/lib/database/AcDbDatabaseConverterRegister.d.ts.map +1 -0
  63. package/lib/database/AcDbDatabaseConverterRegister.js +84 -0
  64. package/lib/database/AcDbDatabaseConverterRegister.js.map +1 -0
  65. package/lib/database/AcDbDimStyleTable.d.ts +11 -0
  66. package/lib/database/AcDbDimStyleTable.d.ts.map +1 -0
  67. package/lib/database/AcDbDimStyleTable.js +29 -0
  68. package/lib/database/AcDbDimStyleTable.js.map +1 -0
  69. package/lib/database/AcDbDimStyleTableRecord.d.ts +682 -0
  70. package/lib/database/AcDbDimStyleTableRecord.d.ts.map +1 -0
  71. package/lib/database/AcDbDimStyleTableRecord.js +1250 -0
  72. package/lib/database/AcDbDimStyleTableRecord.js.map +1 -0
  73. package/lib/database/AcDbLayerTable.d.ts +14 -0
  74. package/lib/database/AcDbLayerTable.d.ts.map +1 -0
  75. package/lib/database/AcDbLayerTable.js +55 -0
  76. package/lib/database/AcDbLayerTable.js.map +1 -0
  77. package/lib/database/AcDbLayerTableRecord.d.ts +98 -0
  78. package/lib/database/AcDbLayerTableRecord.d.ts.map +1 -0
  79. package/lib/database/AcDbLayerTableRecord.js +235 -0
  80. package/lib/database/AcDbLayerTableRecord.js.map +1 -0
  81. package/lib/database/AcDbLinetypeTable.d.ts +11 -0
  82. package/lib/database/AcDbLinetypeTable.d.ts.map +1 -0
  83. package/lib/database/AcDbLinetypeTable.js +29 -0
  84. package/lib/database/AcDbLinetypeTable.js.map +1 -0
  85. package/lib/database/AcDbLinetypeTableRecord.d.ts +47 -0
  86. package/lib/database/AcDbLinetypeTableRecord.d.ts.map +1 -0
  87. package/lib/database/AcDbLinetypeTableRecord.js +97 -0
  88. package/lib/database/AcDbLinetypeTableRecord.js.map +1 -0
  89. package/lib/database/AcDbSymbolTable.d.ts +74 -0
  90. package/lib/database/AcDbSymbolTable.d.ts.map +1 -0
  91. package/lib/database/AcDbSymbolTable.js +136 -0
  92. package/lib/database/AcDbSymbolTable.js.map +1 -0
  93. package/lib/database/AcDbSymbolTableRecord.d.ts +16 -0
  94. package/lib/database/AcDbSymbolTableRecord.d.ts.map +1 -0
  95. package/lib/database/AcDbSymbolTableRecord.js +44 -0
  96. package/lib/database/AcDbSymbolTableRecord.js.map +1 -0
  97. package/lib/database/AcDbTextStyleTable.d.ts +14 -0
  98. package/lib/database/AcDbTextStyleTable.d.ts.map +1 -0
  99. package/lib/database/AcDbTextStyleTable.js +78 -0
  100. package/lib/database/AcDbTextStyleTable.js.map +1 -0
  101. package/lib/database/AcDbTextStyleTableRecord.d.ts +67 -0
  102. package/lib/database/AcDbTextStyleTableRecord.d.ts.map +1 -0
  103. package/lib/database/AcDbTextStyleTableRecord.js +166 -0
  104. package/lib/database/AcDbTextStyleTableRecord.js.map +1 -0
  105. package/lib/database/AcDbViewportTable.d.ts +11 -0
  106. package/lib/database/AcDbViewportTable.d.ts.map +1 -0
  107. package/lib/database/AcDbViewportTable.js +29 -0
  108. package/lib/database/AcDbViewportTable.js.map +1 -0
  109. package/lib/database/AcDbViewportTableRecord.d.ts +89 -0
  110. package/lib/database/AcDbViewportTableRecord.d.ts.map +1 -0
  111. package/lib/database/AcDbViewportTableRecord.js +262 -0
  112. package/lib/database/AcDbViewportTableRecord.js.map +1 -0
  113. package/lib/database/index.d.ts +18 -0
  114. package/lib/database/index.d.ts.map +1 -0
  115. package/lib/database/index.js +18 -0
  116. package/lib/database/index.js.map +1 -0
  117. package/lib/entity/AcDbArc.d.ts +67 -0
  118. package/lib/entity/AcDbArc.d.ts.map +1 -0
  119. package/lib/entity/AcDbArc.js +154 -0
  120. package/lib/entity/AcDbArc.js.map +1 -0
  121. package/lib/entity/AcDbBlockReference.d.ts +54 -0
  122. package/lib/entity/AcDbBlockReference.d.ts.map +1 -0
  123. package/lib/entity/AcDbBlockReference.js +168 -0
  124. package/lib/entity/AcDbBlockReference.js.map +1 -0
  125. package/lib/entity/AcDbCircle.d.ts +51 -0
  126. package/lib/entity/AcDbCircle.d.ts.map +1 -0
  127. package/lib/entity/AcDbCircle.js +115 -0
  128. package/lib/entity/AcDbCircle.js.map +1 -0
  129. package/lib/entity/AcDbCurve.d.ts +9 -0
  130. package/lib/entity/AcDbCurve.d.ts.map +1 -0
  131. package/lib/entity/AcDbCurve.js +25 -0
  132. package/lib/entity/AcDbCurve.js.map +1 -0
  133. package/lib/entity/AcDbEllipse.d.ts +53 -0
  134. package/lib/entity/AcDbEllipse.d.ts.map +1 -0
  135. package/lib/entity/AcDbEllipse.js +119 -0
  136. package/lib/entity/AcDbEllipse.js.map +1 -0
  137. package/lib/entity/AcDbEntity.d.ts +103 -0
  138. package/lib/entity/AcDbEntity.d.ts.map +1 -0
  139. package/lib/entity/AcDbEntity.js +292 -0
  140. package/lib/entity/AcDbEntity.js.map +1 -0
  141. package/lib/entity/AcDbHatch.d.ts +116 -0
  142. package/lib/entity/AcDbHatch.d.ts.map +1 -0
  143. package/lib/entity/AcDbHatch.js +200 -0
  144. package/lib/entity/AcDbHatch.js.map +1 -0
  145. package/lib/entity/AcDbLeader.d.ts +94 -0
  146. package/lib/entity/AcDbLeader.d.ts.map +1 -0
  147. package/lib/entity/AcDbLeader.js +217 -0
  148. package/lib/entity/AcDbLeader.js.map +1 -0
  149. package/lib/entity/AcDbLine.d.ts +55 -0
  150. package/lib/entity/AcDbLine.d.ts.map +1 -0
  151. package/lib/entity/AcDbLine.js +158 -0
  152. package/lib/entity/AcDbLine.js.map +1 -0
  153. package/lib/entity/AcDbMText.d.ts +119 -0
  154. package/lib/entity/AcDbMText.d.ts.map +1 -0
  155. package/lib/entity/AcDbMText.js +300 -0
  156. package/lib/entity/AcDbMText.js.map +1 -0
  157. package/lib/entity/AcDbPoint.d.ts +32 -0
  158. package/lib/entity/AcDbPoint.d.ts.map +1 -0
  159. package/lib/entity/AcDbPoint.js +75 -0
  160. package/lib/entity/AcDbPoint.js.map +1 -0
  161. package/lib/entity/AcDbPolyline.d.ts +72 -0
  162. package/lib/entity/AcDbPolyline.d.ts.map +1 -0
  163. package/lib/entity/AcDbPolyline.js +154 -0
  164. package/lib/entity/AcDbPolyline.js.map +1 -0
  165. package/lib/entity/AcDbRasterImage.d.ts +163 -0
  166. package/lib/entity/AcDbRasterImage.d.ts.map +1 -0
  167. package/lib/entity/AcDbRasterImage.js +406 -0
  168. package/lib/entity/AcDbRasterImage.js.map +1 -0
  169. package/lib/entity/AcDbRay.d.ts +42 -0
  170. package/lib/entity/AcDbRay.d.ts.map +1 -0
  171. package/lib/entity/AcDbRay.js +102 -0
  172. package/lib/entity/AcDbRay.js.map +1 -0
  173. package/lib/entity/AcDbSpline.d.ts +37 -0
  174. package/lib/entity/AcDbSpline.d.ts.map +1 -0
  175. package/lib/entity/AcDbSpline.js +71 -0
  176. package/lib/entity/AcDbSpline.js.map +1 -0
  177. package/lib/entity/AcDbTable.d.ts +141 -0
  178. package/lib/entity/AcDbTable.d.ts.map +1 -0
  179. package/lib/entity/AcDbTable.js +358 -0
  180. package/lib/entity/AcDbTable.js.map +1 -0
  181. package/lib/entity/AcDbText.d.ts +110 -0
  182. package/lib/entity/AcDbText.d.ts.map +1 -0
  183. package/lib/entity/AcDbText.js +255 -0
  184. package/lib/entity/AcDbText.js.map +1 -0
  185. package/lib/entity/AcDbTrace.d.ts +64 -0
  186. package/lib/entity/AcDbTrace.d.ts.map +1 -0
  187. package/lib/entity/AcDbTrace.js +145 -0
  188. package/lib/entity/AcDbTrace.js.map +1 -0
  189. package/lib/entity/AcDbViewport.d.ts +58 -0
  190. package/lib/entity/AcDbViewport.d.ts.map +1 -0
  191. package/lib/entity/AcDbViewport.js +179 -0
  192. package/lib/entity/AcDbViewport.js.map +1 -0
  193. package/lib/entity/AcDbWipeout.d.ts +9 -0
  194. package/lib/entity/AcDbWipeout.d.ts.map +1 -0
  195. package/lib/entity/AcDbWipeout.js +40 -0
  196. package/lib/entity/AcDbWipeout.js.map +1 -0
  197. package/lib/entity/AcDbXline.d.ts +42 -0
  198. package/lib/entity/AcDbXline.d.ts.map +1 -0
  199. package/lib/entity/AcDbXline.js +102 -0
  200. package/lib/entity/AcDbXline.js.map +1 -0
  201. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts +46 -0
  202. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts.map +1 -0
  203. package/lib/entity/dimension/AcDb3PointAngularDimension.js +111 -0
  204. package/lib/entity/dimension/AcDb3PointAngularDimension.js.map +1 -0
  205. package/lib/entity/dimension/AcDbAlignedDimension.d.ts +77 -0
  206. package/lib/entity/dimension/AcDbAlignedDimension.d.ts.map +1 -0
  207. package/lib/entity/dimension/AcDbAlignedDimension.js +203 -0
  208. package/lib/entity/dimension/AcDbAlignedDimension.js.map +1 -0
  209. package/lib/entity/dimension/AcDbArcDimension.d.ts +46 -0
  210. package/lib/entity/dimension/AcDbArcDimension.d.ts.map +1 -0
  211. package/lib/entity/dimension/AcDbArcDimension.js +111 -0
  212. package/lib/entity/dimension/AcDbArcDimension.js.map +1 -0
  213. package/lib/entity/dimension/AcDbDiametricDimension.d.ts +69 -0
  214. package/lib/entity/dimension/AcDbDiametricDimension.d.ts.map +1 -0
  215. package/lib/entity/dimension/AcDbDiametricDimension.js +199 -0
  216. package/lib/entity/dimension/AcDbDiametricDimension.js.map +1 -0
  217. package/lib/entity/dimension/AcDbDimension.d.ts +161 -0
  218. package/lib/entity/dimension/AcDbDimension.d.ts.map +1 -0
  219. package/lib/entity/dimension/AcDbDimension.js +375 -0
  220. package/lib/entity/dimension/AcDbDimension.js.map +1 -0
  221. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts +44 -0
  222. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts.map +1 -0
  223. package/lib/entity/dimension/AcDbOrdinateDimension.js +99 -0
  224. package/lib/entity/dimension/AcDbOrdinateDimension.js.map +1 -0
  225. package/lib/entity/dimension/AcDbRadialDimension.d.ts +69 -0
  226. package/lib/entity/dimension/AcDbRadialDimension.d.ts.map +1 -0
  227. package/lib/entity/dimension/AcDbRadialDimension.js +148 -0
  228. package/lib/entity/dimension/AcDbRadialDimension.js.map +1 -0
  229. package/lib/entity/dimension/index.d.ts +8 -0
  230. package/lib/entity/dimension/index.d.ts.map +1 -0
  231. package/lib/entity/dimension/index.js +8 -0
  232. package/lib/entity/dimension/index.js.map +1 -0
  233. package/lib/entity/index.d.ts +23 -0
  234. package/lib/entity/index.d.ts.map +1 -0
  235. package/lib/entity/index.js +23 -0
  236. package/lib/entity/index.js.map +1 -0
  237. package/lib/index.d.ts +10 -0
  238. package/lib/index.d.ts.map +1 -0
  239. package/lib/index.js +10 -0
  240. package/lib/index.js.map +1 -0
  241. package/lib/misc/AcDbAngleUnits.d.ts +8 -0
  242. package/lib/misc/AcDbAngleUnits.d.ts.map +1 -0
  243. package/lib/misc/AcDbAngleUnits.js +9 -0
  244. package/lib/misc/AcDbAngleUnits.js.map +1 -0
  245. package/lib/misc/AcDbConstants.d.ts +4 -0
  246. package/lib/misc/AcDbConstants.d.ts.map +1 -0
  247. package/lib/misc/AcDbConstants.js +4 -0
  248. package/lib/misc/AcDbConstants.js.map +1 -0
  249. package/lib/misc/AcDbDimArrowType.d.ts +86 -0
  250. package/lib/misc/AcDbDimArrowType.d.ts.map +1 -0
  251. package/lib/misc/AcDbDimArrowType.js +87 -0
  252. package/lib/misc/AcDbDimArrowType.js.map +1 -0
  253. package/lib/misc/AcDbObjectIterator.d.ts +16 -0
  254. package/lib/misc/AcDbObjectIterator.d.ts.map +1 -0
  255. package/lib/misc/AcDbObjectIterator.js +28 -0
  256. package/lib/misc/AcDbObjectIterator.js.map +1 -0
  257. package/lib/misc/AcDbOsnapMode.d.ts +43 -0
  258. package/lib/misc/AcDbOsnapMode.d.ts.map +1 -0
  259. package/lib/misc/AcDbOsnapMode.js +44 -0
  260. package/lib/misc/AcDbOsnapMode.js.map +1 -0
  261. package/lib/misc/AcDbRenderingCache.d.ts +61 -0
  262. package/lib/misc/AcDbRenderingCache.d.ts.map +1 -0
  263. package/lib/misc/AcDbRenderingCache.js +154 -0
  264. package/lib/misc/AcDbRenderingCache.js.map +1 -0
  265. package/lib/misc/AcDbUnitsValue.d.ts +51 -0
  266. package/lib/misc/AcDbUnitsValue.d.ts.map +1 -0
  267. package/lib/misc/AcDbUnitsValue.js +71 -0
  268. package/lib/misc/AcDbUnitsValue.js.map +1 -0
  269. package/lib/misc/index.d.ts +8 -0
  270. package/lib/misc/index.d.ts.map +1 -0
  271. package/lib/misc/index.js +8 -0
  272. package/lib/misc/index.js.map +1 -0
  273. package/lib/object/AcDbDictionary.d.ts +80 -0
  274. package/lib/object/AcDbDictionary.d.ts.map +1 -0
  275. package/lib/object/AcDbDictionary.js +144 -0
  276. package/lib/object/AcDbDictionary.js.map +1 -0
  277. package/lib/object/AcDbRasterImageDef.d.ts +25 -0
  278. package/lib/object/AcDbRasterImageDef.d.ts.map +1 -0
  279. package/lib/object/AcDbRasterImageDef.js +54 -0
  280. package/lib/object/AcDbRasterImageDef.js.map +1 -0
  281. package/lib/object/index.d.ts +4 -0
  282. package/lib/object/index.d.ts.map +1 -0
  283. package/lib/object/index.js +4 -0
  284. package/lib/object/index.js.map +1 -0
  285. package/lib/object/layout/AcDbLayout.d.ts +51 -0
  286. package/lib/object/layout/AcDbLayout.d.ts.map +1 -0
  287. package/lib/object/layout/AcDbLayout.js +120 -0
  288. package/lib/object/layout/AcDbLayout.js.map +1 -0
  289. package/lib/object/layout/AcDbLayoutDictionary.d.ts +19 -0
  290. package/lib/object/layout/AcDbLayoutDictionary.d.ts.map +1 -0
  291. package/lib/object/layout/AcDbLayoutDictionary.js +94 -0
  292. package/lib/object/layout/AcDbLayoutDictionary.js.map +1 -0
  293. package/lib/object/layout/AcDbLayoutManager.d.ts +101 -0
  294. package/lib/object/layout/AcDbLayoutManager.d.ts.map +1 -0
  295. package/lib/object/layout/AcDbLayoutManager.js +154 -0
  296. package/lib/object/layout/AcDbLayoutManager.js.map +1 -0
  297. package/lib/object/layout/index.d.ts +4 -0
  298. package/lib/object/layout/index.d.ts.map +1 -0
  299. package/lib/object/layout/index.js +4 -0
  300. package/lib/object/layout/index.js.map +1 -0
  301. package/package.json +46 -0
@@ -0,0 +1,1250 @@
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ if (typeof b !== "function" && b !== null)
10
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
11
+ extendStatics(d, b);
12
+ function __() { this.constructor = d; }
13
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
14
+ };
15
+ })();
16
+ import { defaults } from 'lodash-es';
17
+ import { AcDbSymbolTableRecord } from './AcDbSymbolTableRecord';
18
+ export var AcDbDimTextHorizontal;
19
+ (function (AcDbDimTextHorizontal) {
20
+ AcDbDimTextHorizontal[AcDbDimTextHorizontal["Center"] = 0] = "Center";
21
+ AcDbDimTextHorizontal[AcDbDimTextHorizontal["Left"] = 1] = "Left";
22
+ AcDbDimTextHorizontal[AcDbDimTextHorizontal["Right"] = 2] = "Right";
23
+ AcDbDimTextHorizontal[AcDbDimTextHorizontal["OverFirst"] = 3] = "OverFirst";
24
+ AcDbDimTextHorizontal[AcDbDimTextHorizontal["OverSecond"] = 4] = "OverSecond";
25
+ })(AcDbDimTextHorizontal || (AcDbDimTextHorizontal = {}));
26
+ export var AcDbDimTextVertical;
27
+ (function (AcDbDimTextVertical) {
28
+ AcDbDimTextVertical[AcDbDimTextVertical["Center"] = 0] = "Center";
29
+ AcDbDimTextVertical[AcDbDimTextVertical["Above"] = 1] = "Above";
30
+ AcDbDimTextVertical[AcDbDimTextVertical["Outside"] = 2] = "Outside";
31
+ AcDbDimTextVertical[AcDbDimTextVertical["JIS"] = 3] = "JIS";
32
+ AcDbDimTextVertical[AcDbDimTextVertical["Below"] = 4] = "Below";
33
+ })(AcDbDimTextVertical || (AcDbDimTextVertical = {}));
34
+ export var AcDbDimZeroSuppression;
35
+ (function (AcDbDimZeroSuppression) {
36
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["Feet"] = 0] = "Feet";
37
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["None"] = 1] = "None";
38
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["Inch"] = 2] = "Inch";
39
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["FeetAndInch"] = 3] = "FeetAndInch";
40
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["Leading"] = 4] = "Leading";
41
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["Trailing"] = 8] = "Trailing";
42
+ AcDbDimZeroSuppression[AcDbDimZeroSuppression["LeadingAndTrailing"] = 12] = "LeadingAndTrailing";
43
+ })(AcDbDimZeroSuppression || (AcDbDimZeroSuppression = {}));
44
+ export var AcDbDimZeroSuppressionAngular;
45
+ (function (AcDbDimZeroSuppressionAngular) {
46
+ AcDbDimZeroSuppressionAngular[AcDbDimZeroSuppressionAngular["None"] = 0] = "None";
47
+ AcDbDimZeroSuppressionAngular[AcDbDimZeroSuppressionAngular["Leading"] = 1] = "Leading";
48
+ AcDbDimZeroSuppressionAngular[AcDbDimZeroSuppressionAngular["Trailing"] = 2] = "Trailing";
49
+ AcDbDimZeroSuppressionAngular[AcDbDimZeroSuppressionAngular["LeadingAndTrailing"] = 3] = "LeadingAndTrailing";
50
+ })(AcDbDimZeroSuppressionAngular || (AcDbDimZeroSuppressionAngular = {}));
51
+ export var AcDbDimVerticalJustification;
52
+ (function (AcDbDimVerticalJustification) {
53
+ AcDbDimVerticalJustification[AcDbDimVerticalJustification["Bottom"] = 0] = "Bottom";
54
+ AcDbDimVerticalJustification[AcDbDimVerticalJustification["Middle"] = 1] = "Middle";
55
+ AcDbDimVerticalJustification[AcDbDimVerticalJustification["Top"] = 2] = "Top";
56
+ })(AcDbDimVerticalJustification || (AcDbDimVerticalJustification = {}));
57
+ /**
58
+ * Objects of this class represent the records found in the dimension style table. Each of these
59
+ * records contains the information necessary to generate a specific appearance (that is, text
60
+ * above, in, or below the line; arrows, slashes, or dots at the end of the dimension line, and
61
+ * so on) for dimensions that reference it.
62
+ */
63
+ var AcDbDimStyleTableRecord = /** @class */ (function (_super) {
64
+ __extends(AcDbDimStyleTableRecord, _super);
65
+ function AcDbDimStyleTableRecord(attrs, defaultAttrs) {
66
+ attrs = attrs || {};
67
+ defaults(attrs, AcDbDimStyleTableRecord.DEFAULT_DIM_VALUES);
68
+ return _super.call(this, attrs, defaultAttrs) || this;
69
+ }
70
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimpost", {
71
+ /**
72
+ * Dimension postfix. This property specifies a text prefix or suffix (or both) to the dimension
73
+ * measurement.
74
+ * For example, to establish a suffix for millimeters, set DIMPOST to mm; a distance of 19.2 units
75
+ * would be displayed as 19.2 mm.
76
+ * If tolerances are turned on, the suffix is applied to the tolerances as well as to the main
77
+ * dimension. Use <> to indicate placement of the text in relation to the dimension value. For
78
+ * example, enter <>mm to display a 5.0 millimeter radial dimension as "5.0mm". If you entered
79
+ * mm <>, the dimension would be displayed as "mm 5.0". Use the <> mechanism for angular
80
+ * dimensions.
81
+ */
82
+ get: function () {
83
+ return this.getAttr('dimpost');
84
+ },
85
+ set: function (value) {
86
+ this.setAttr('dimpost', value);
87
+ },
88
+ enumerable: false,
89
+ configurable: true
90
+ });
91
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimapost", {
92
+ /**
93
+ * Dimension append postfix. This property specifies a text prefix or suffix (or both) to the
94
+ * alternate dimension measurement for all types of dimensions except angular.
95
+ * For instance, if the current units are Architectural, DIMALT is on, DIMALTF is 25.4 (the
96
+ * number of millimeters per inch), DIMALTD is 2, and DIMAPOST is set to "mm", a distance of 10
97
+ * units would be displayed as 10"[254.00mm].
98
+ * To turn off an established prefix or suffix (or both), set it to a single period (.).
99
+ */
100
+ get: function () {
101
+ return this.getAttr('dimapost');
102
+ },
103
+ set: function (value) {
104
+ this.setAttr('dimapost', value);
105
+ },
106
+ enumerable: false,
107
+ configurable: true
108
+ });
109
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimscale", {
110
+ /**
111
+ * Dimension scale. This property controls the scale factor for dimensioning objects. If you need
112
+ * to adjust the scale of your dimensions, you can change this value to better fit your drawing's
113
+ * scale.
114
+ */
115
+ get: function () {
116
+ return this.getAttr('dimscale');
117
+ },
118
+ set: function (value) {
119
+ this.setAttr('dimscale', value);
120
+ },
121
+ enumerable: false,
122
+ configurable: true
123
+ });
124
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimasz", {
125
+ /**
126
+ * Dimension arrow size. This property controls the size of the arrowheads used in dimensions. You
127
+ * can modify this value to adjust the size of arrowheads based on your drawing's requirements.
128
+ */
129
+ get: function () {
130
+ return this.getAttr('dimasz');
131
+ },
132
+ set: function (value) {
133
+ this.setAttr('dimasz', value);
134
+ },
135
+ enumerable: false,
136
+ configurable: true
137
+ });
138
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimexo", {
139
+ /**
140
+ * Dimension extension line offset. This property controls the offset distance from the origin point
141
+ * to where the extension line starts. You can adjust it to control how far the extension line is set
142
+ * back from the object being dimensioned.
143
+ */
144
+ get: function () {
145
+ return this.getAttr('dimexo');
146
+ },
147
+ set: function (value) {
148
+ this.setAttr('dimexo', value);
149
+ },
150
+ enumerable: false,
151
+ configurable: true
152
+ });
153
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimdli", {
154
+ /**
155
+ * Dimension line Increment. This property controls the spacing between the dimension lines when you
156
+ * create multiple parallel dimensions using the baseline dimensioning method.
157
+ */
158
+ get: function () {
159
+ return this.getAttr('dimdli');
160
+ },
161
+ set: function (value) {
162
+ this.setAttr('dimdli', value);
163
+ },
164
+ enumerable: false,
165
+ configurable: true
166
+ });
167
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimexe", {
168
+ /**
169
+ * Dimension extension line extension. This property controls how far beyond the dimension line the
170
+ * extension lines extend. You can adjust this value to control the length of the extension line
171
+ * past the dimension line.
172
+ */
173
+ get: function () {
174
+ return this.getAttr('dimexe');
175
+ },
176
+ set: function (value) {
177
+ this.setAttr('dimexe', value);
178
+ },
179
+ enumerable: false,
180
+ configurable: true
181
+ });
182
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimrnd", {
183
+ /**
184
+ * Dimension rounding. This property controls the rounding of dimension distances to a specified value.
185
+ * When set to 0.0, no rounding occurs, and the dimension is displayed with its exact value. You can
186
+ * set it to a non-zero value to round dimensions to a specific increment.
187
+ */
188
+ get: function () {
189
+ return this.getAttr('dimrnd');
190
+ },
191
+ set: function (value) {
192
+ this.setAttr('dimrnd', value);
193
+ },
194
+ enumerable: false,
195
+ configurable: true
196
+ });
197
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimdle", {
198
+ /**
199
+ * Dimension line extension. This property controls how far the dimension line is extended beyond
200
+ * the extension lines. By default, the dimension line ends at the extension lines, but you can
201
+ * adjust this value to extend the dimension line beyond them.
202
+ */
203
+ get: function () {
204
+ return this.getAttr('dimdle');
205
+ },
206
+ set: function (value) {
207
+ this.setAttr('dimdle', value);
208
+ },
209
+ enumerable: false,
210
+ configurable: true
211
+ });
212
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtp", {
213
+ /**
214
+ * Dimension text post. This property controls the tolerance value added after the dimension text,
215
+ * typically used for specifying tolerance values in dimensions. The default setting of 0.0 means
216
+ * that no additional tolerance is applied by default.
217
+ */
218
+ get: function () {
219
+ return this.getAttr('dimtp');
220
+ },
221
+ set: function (value) {
222
+ this.setAttr('dimtp', value);
223
+ },
224
+ enumerable: false,
225
+ configurable: true
226
+ });
227
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtm", {
228
+ /**
229
+ * Dimension minus tolerance. This property controls the lower tolerance limit for dimensions. When
230
+ * set to 0.0, no minus tolerance is applied by default. You can set this to a different value if
231
+ * you need to specify a negative tolerance for your dimensions.
232
+ */
233
+ get: function () {
234
+ return this.getAttr('dimtm');
235
+ },
236
+ set: function (value) {
237
+ this.setAttr('dimtm', value);
238
+ },
239
+ enumerable: false,
240
+ configurable: true
241
+ });
242
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtxt", {
243
+ /**
244
+ * Dimension text height. This property controls the height of the dimension text. You can adjust
245
+ * this value to change the size of the text in your dimensions to fit the scale and appearance of
246
+ * your drawing.
247
+ */
248
+ get: function () {
249
+ return this.getAttr('dimtxt');
250
+ },
251
+ set: function (value) {
252
+ this.setAttr('dimtxt', value);
253
+ },
254
+ enumerable: false,
255
+ configurable: true
256
+ });
257
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimcen", {
258
+ /**
259
+ * Dimension center mark size. This property controls the size of the center marks or centerlines
260
+ * for circles and arcs in dimensions. A positive value specifies the size of the center mark,
261
+ * while a negative value specifies the size of the centerline. If set to 0, no center mark or
262
+ * centerline is drawn.
263
+ */
264
+ get: function () {
265
+ return this.getAttr('dimcen');
266
+ },
267
+ set: function (value) {
268
+ this.setAttr('dimcen', value);
269
+ },
270
+ enumerable: false,
271
+ configurable: true
272
+ });
273
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtsz", {
274
+ /**
275
+ * Dimension tick size. When set to 0.0, no tick marks are displayed, and the default arrowheads are
276
+ * used for dimension lines. If you set it to a positive value, it will display tick marks instead
277
+ * of arrowheads, with the value controlling the size of the ticks.
278
+ */
279
+ get: function () {
280
+ return this.getAttr('dimtsz');
281
+ },
282
+ set: function (value) {
283
+ this.setAttr('dimtsz', value);
284
+ },
285
+ enumerable: false,
286
+ configurable: true
287
+ });
288
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimaltf", {
289
+ /**
290
+ * Alternate dimensioning. The default value of DIMALT is set to 0 for DIMALTF (Dimension Alternate
291
+ * Text Format), which means that alternate dimensions are not displayed by default.
292
+ * When DIMALT is set to 1, it indicates that alternate dimensioning is enabled, and you can use
293
+ * DIMALTF to specify the format of the alternate dimension text. You can set it to various values
294
+ * depending on how you want the alternate dimensions to be displayed.
295
+ */
296
+ get: function () {
297
+ return this.getAttr('dimaltf');
298
+ },
299
+ set: function (value) {
300
+ this.setAttr('dimaltf', value);
301
+ },
302
+ enumerable: false,
303
+ configurable: true
304
+ });
305
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimlfac", {
306
+ /**
307
+ * Dimension linear factor. This property controls the scaling factor for linear dimensions. If you
308
+ * want to adjust the size of linear dimensions without changing the actual dimension text height or
309
+ * other dimension settings, you can modify this value. A setting of 1.0 means that dimensions are
310
+ * displayed at their actual size.
311
+ */
312
+ get: function () {
313
+ return this.getAttr('dimlfac');
314
+ },
315
+ set: function (value) {
316
+ this.setAttr('dimlfac', value);
317
+ },
318
+ enumerable: false,
319
+ configurable: true
320
+ });
321
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtvp", {
322
+ /**
323
+ * Dimension text vertical position. This property controls the vertical position of dimension text
324
+ * relative to the dimension line. A value of 0.0 means that the dimension text is placed directly
325
+ * on the dimension line. You can adjust this value to change the vertical offset of the dimension
326
+ * text above or below the dimension line.
327
+ */
328
+ get: function () {
329
+ return this.getAttr('dimtvp');
330
+ },
331
+ set: function (value) {
332
+ this.setAttr('dimtvp', value);
333
+ },
334
+ enumerable: false,
335
+ configurable: true
336
+ });
337
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtfac", {
338
+ /**
339
+ * Dimension text factor. This property is used to scale the height of dimension text based on the
340
+ * current DIMTXT value. If you set DIMTFAC to a value greater than 1.0, the dimension text will be
341
+ * larger than the default height specified by DIMTXT. Conversely, setting it to a value less than
342
+ * 1.0 will make the text smaller.
343
+ */
344
+ get: function () {
345
+ return this.getAttr('dimtfac');
346
+ },
347
+ set: function (value) {
348
+ this.setAttr('dimtfac', value);
349
+ },
350
+ enumerable: false,
351
+ configurable: true
352
+ });
353
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimgap", {
354
+ /**
355
+ * Dimension gap. This property controls the distance between the dimension line and the extension
356
+ * lines. You can adjust this value to create more space or less space between these elements in
357
+ * your dimensions.
358
+ */
359
+ get: function () {
360
+ return this.getAttr('dimgap');
361
+ },
362
+ set: function (value) {
363
+ this.setAttr('dimgap', value);
364
+ },
365
+ enumerable: false,
366
+ configurable: true
367
+ });
368
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimaltrnd", {
369
+ /**
370
+ * Dimension alternate rounding. This property controls rounds off the alternate dimension units.
371
+ */
372
+ get: function () {
373
+ return this.getAttr('dimaltrnd');
374
+ },
375
+ set: function (value) {
376
+ this.setAttr('dimaltrnd', value);
377
+ },
378
+ enumerable: false,
379
+ configurable: true
380
+ });
381
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtol", {
382
+ /**
383
+ * Dimension tolerance. This property determines whether to appends tolerances to dimension text.
384
+ * Setting DIMTOL to on (1) turns DIMLIM off (0).
385
+ */
386
+ get: function () {
387
+ return this.getAttr('dimtol');
388
+ },
389
+ set: function (value) {
390
+ this.setAttr('dimtol', value);
391
+ },
392
+ enumerable: false,
393
+ configurable: true
394
+ });
395
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimlim", {
396
+ /**
397
+ * Dimension limit. This property determines whether to generate dimension limits as the default
398
+ * text. Setting DIMLIM to On turns DIMTOL off.
399
+ * - 0: Dimension limits are not generated as default text
400
+ * - 1: Dimension limits are generated as default text
401
+ */
402
+ get: function () {
403
+ return this.getAttr('dimlim');
404
+ },
405
+ set: function (value) {
406
+ this.setAttr('dimlim', value);
407
+ },
408
+ enumerable: false,
409
+ configurable: true
410
+ });
411
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtih", {
412
+ /**
413
+ * Dimension text inside horizontal. This property controls the position of dimension text inside the
414
+ * extension lines for all dimension types except Ordinate.
415
+ * - 0: Aligns text with the dimension line
416
+ * - 1: Draws text horizontally
417
+ */
418
+ get: function () {
419
+ return this.getAttr('dimtih');
420
+ },
421
+ set: function (value) {
422
+ this.setAttr('dimtih', value);
423
+ },
424
+ enumerable: false,
425
+ configurable: true
426
+ });
427
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtoh", {
428
+ /**
429
+ * Dimension text outside horizontal. This property controls the position of dimension text
430
+ * outside the extension lines.
431
+ * - 0: Aligns text with the dimension line
432
+ * - 1: Draws text horizontally
433
+ */
434
+ get: function () {
435
+ return this.getAttr('dimtoh');
436
+ },
437
+ set: function (value) {
438
+ this.setAttr('dimtoh', value);
439
+ },
440
+ enumerable: false,
441
+ configurable: true
442
+ });
443
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimse1", {
444
+ /**
445
+ * Dimension suppress extension line 1. This property controls whether to suppresses display of the
446
+ * first extension line.
447
+ * - 0: Extension line is not suppressed
448
+ * - 1: Extension line is suppressed
449
+ */
450
+ get: function () {
451
+ return this.getAttr('dimse1');
452
+ },
453
+ set: function (value) {
454
+ this.setAttr('dimse1', value);
455
+ },
456
+ enumerable: false,
457
+ configurable: true
458
+ });
459
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimse2", {
460
+ /**
461
+ * Dimension suppress extension line 2. This property controls whether to suppresses display of the
462
+ * second extension line.
463
+ * - 0: Extension line is not suppressed
464
+ * - 1: Extension line is suppressed
465
+ */
466
+ get: function () {
467
+ return this.getAttr('dimse2');
468
+ },
469
+ set: function (value) {
470
+ this.setAttr('dimse2', value);
471
+ },
472
+ enumerable: false,
473
+ configurable: true
474
+ });
475
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtad", {
476
+ /**
477
+ * Dimension text above dimension line. This property the vertical position of text in relation to
478
+ * the dimension line.
479
+ * - 0: Centers the dimension text between the extension lines.
480
+ * - 1: Places the dimension text above the dimension line except when the dimension line is not
481
+ * horizontal and text inside the extension lines is forced horizontal ( DIMTIH = 1). The distance
482
+ * from the dimension line to the baseline of the lowest line of text is the current DIMGAP value.
483
+ * - 2: Places the dimension text on the side of the dimension line farthest away from the defining
484
+ * points.
485
+ * - 3: Places the dimension text to conform to Japanese Industrial Standards (JIS).
486
+ * - 4: Places the dimension text below the dimension line.
487
+ */
488
+ get: function () {
489
+ return this.getAttr('dimtad');
490
+ },
491
+ set: function (value) {
492
+ this.setAttr('dimtad', value);
493
+ },
494
+ enumerable: false,
495
+ configurable: true
496
+ });
497
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimzin", {
498
+ /**
499
+ * Dimension zero-in. This property controls the suppression of zeros in the primary unit value.
500
+ * - 0: Suppresses zero feet and precisely zero inches
501
+ * - 1: Includes zero feet and precisely zero inches
502
+ * - 2: Includes zero feet and suppresses zero inches
503
+ * - 3: Includes zero inches and suppresses zero feet
504
+ * - 4: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
505
+ * - 8: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
506
+ * - 12: Suppresses both leading and trailing zeros (for example, 0.5000 becomes .5)
507
+ */
508
+ get: function () {
509
+ return this.getAttr('dimzin');
510
+ },
511
+ set: function (value) {
512
+ this.setAttr('dimzin', value);
513
+ },
514
+ enumerable: false,
515
+ configurable: true
516
+ });
517
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimazin", {
518
+ /**
519
+ * Dimension zero-in for angular dimensions.
520
+ * - 0: Displays all leading and trailing zeros
521
+ * - 1: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
522
+ * - 2: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
523
+ * - 3: Suppresses leading and trailing zeros (for example, 0.5000 becomes .5)
524
+ */
525
+ get: function () {
526
+ return this.getAttr('dimazin');
527
+ },
528
+ set: function (value) {
529
+ this.setAttr('dimazin', value);
530
+ },
531
+ enumerable: false,
532
+ configurable: true
533
+ });
534
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimalt", {
535
+ /**
536
+ * Dimension angular zero-in. This property controls the display of alternate units in dimensions.
537
+ * - 0: Disables alternate units
538
+ * - 1: Enables alternate units
539
+ */
540
+ get: function () {
541
+ return this.getAttr('dimalt');
542
+ },
543
+ set: function (value) {
544
+ this.setAttr('dimalt', value);
545
+ },
546
+ enumerable: false,
547
+ configurable: true
548
+ });
549
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimaltd", {
550
+ /**
551
+ * Dimension alternate dimension. This property controls the number of decimal places in alternate
552
+ * units. If DIMALT is turned on, DIMALTD sets the number of digits displayed to the right of the
553
+ * decimal point in the alternate measurement.
554
+ */
555
+ get: function () {
556
+ return this.getAttr('dimaltd');
557
+ },
558
+ set: function (value) {
559
+ this.setAttr('dimaltd', value);
560
+ },
561
+ enumerable: false,
562
+ configurable: true
563
+ });
564
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtofl", {
565
+ /**
566
+ * Dimension to first extension line. This property controls whether a dimension line is drawn
567
+ * between the extension lines even when the text is placed outside. For radius and diameter
568
+ * dimensions, a dimension line is drawn inside the circle or arc when the text, arrowheads,
569
+ * and leader are placed outside.
570
+ * - 0: Does not draw dimension lines between the measured points when arrowheads are placed
571
+ * outside the measured points
572
+ * - 1: Draws dimension lines between the measured points even when arrowheads are placed
573
+ * outside the measured points
574
+ */
575
+ get: function () {
576
+ return this.getAttr('dimtofl');
577
+ },
578
+ set: function (value) {
579
+ this.setAttr('dimtofl', value);
580
+ },
581
+ enumerable: false,
582
+ configurable: true
583
+ });
584
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimsah", {
585
+ /**
586
+ * Dimension suppress arrowheads. This property controls the display of dimension line arrowhead blocks.
587
+ * - 0: Use arrowhead blocks set by DIMBLK
588
+ * - 1: Use arrowhead blocks set by DIMBLK1 and DIMBLK2
589
+ */
590
+ get: function () {
591
+ return this.getAttr('dimsah');
592
+ },
593
+ set: function (value) {
594
+ this.setAttr('dimsah', value);
595
+ },
596
+ enumerable: false,
597
+ configurable: true
598
+ });
599
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtix", {
600
+ /**
601
+ * Dimension text inside extension lines. This property controls the position of dimension text
602
+ * relative to the extension lines.
603
+ * - 0: For linear and angular dimensions, dimension text is placed inside the extension lines if
604
+ * there is sufficient room.
605
+ * - 1: Draws dimension text between the extension lines even if it would ordinarily be placed
606
+ * outside those lines. For radius and diameter dimensions, DIMTIX on always forces the dimension
607
+ * text outside the circle or arc.
608
+ */
609
+ get: function () {
610
+ return this.getAttr('dimtix');
611
+ },
612
+ set: function (value) {
613
+ this.setAttr('dimtix', value);
614
+ },
615
+ enumerable: false,
616
+ configurable: true
617
+ });
618
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimsoxd", {
619
+ /**
620
+ * Dimension suppress offset x-direction. This property controls whether to suppresses arrowheads
621
+ * if not enough space is available inside the extension lines.
622
+ * If not enough space is available inside the extension lines and DIMTIX is on, setting DIMSOXD to
623
+ * On suppresses the arrowheads. If DIMTIX is off, DIMSOXD has no effect.
624
+ * - 0: Arrowheads are not suppressed
625
+ * - 1: Arrowheads are suppressed
626
+ */
627
+ get: function () {
628
+ return this.getAttr('dimsoxd');
629
+ },
630
+ set: function (value) {
631
+ this.setAttr('dimsoxd', value);
632
+ },
633
+ enumerable: false,
634
+ configurable: true
635
+ });
636
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimclrd", {
637
+ /**
638
+ * Dimension color. This property controls colors to dimension lines, arrowheads, and dimension leader
639
+ * lines. For BYBLOCK, enter 0. For BYLAYER, enter 256.
640
+ */
641
+ get: function () {
642
+ return this.getAttr('dimclrd');
643
+ },
644
+ set: function (value) {
645
+ this.setAttr('dimclrd', value);
646
+ },
647
+ enumerable: false,
648
+ configurable: true
649
+ });
650
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimclre", {
651
+ /**
652
+ * Dimension extension line color. This property controls colors to extension lines, center marks,
653
+ * and centerlines. For BYBLOCK, enter 0. For BYLAYER, enter 256.
654
+ */
655
+ get: function () {
656
+ return this.getAttr('dimclre');
657
+ },
658
+ set: function (value) {
659
+ this.setAttr('dimclre', value);
660
+ },
661
+ enumerable: false,
662
+ configurable: true
663
+ });
664
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimclrt", {
665
+ /**
666
+ * Dimension text color. This property controls colors to dimension text. For BYBLOCK, enter 0.
667
+ * For BYLAYER, enter 256.
668
+ */
669
+ get: function () {
670
+ return this.getAttr('dimclrt');
671
+ },
672
+ set: function (value) {
673
+ this.setAttr('dimclrt', value);
674
+ },
675
+ enumerable: false,
676
+ configurable: true
677
+ });
678
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimadec", {
679
+ /**
680
+ * Dimension angular decimal places. This property controls the number of precision places displayed
681
+ * in angular dimensions.
682
+ * - 1: Angular dimensions display the number of decimal places specified by DIMDEC
683
+ * - 0-8: Specifies the number of decimal places displayed in angular dimensions (independent of DIMDEC)
684
+ */
685
+ get: function () {
686
+ return this.getAttr('dimadec');
687
+ },
688
+ set: function (value) {
689
+ this.setAttr('dimadec', value);
690
+ },
691
+ enumerable: false,
692
+ configurable: true
693
+ });
694
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimunit", {
695
+ /**
696
+ * Dimension linear units. This property controls the format in which linear dimensions are displayed.
697
+ * The value of this property include:
698
+ * - 1: Scientific
699
+ * - 2: Decimal
700
+ * - 3: Engineering
701
+ * - 4: Architectural (always displayed stacked)
702
+ * - 5: Fractional (always displayed stacked)
703
+ * - 6: Microsoft Windows Desktop (decimal format using Control Panel settings for decimal separator
704
+ * and number grouping symbols)
705
+ */
706
+ get: function () {
707
+ return this.getAttr('dimunit');
708
+ },
709
+ set: function (value) {
710
+ this.setAttr('dimunit', value);
711
+ },
712
+ enumerable: false,
713
+ configurable: true
714
+ });
715
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimdec", {
716
+ /**
717
+ * Dimension decimal places. This property controls the number of decimal places displayed for the
718
+ * primary units of a dimension. Its initial value is 4 for imperial unit or 2 for metric unit.
719
+ * The precision is based on the units or angle format you have selected. Specified value is applied
720
+ * to angular dimensions when DIMADEC is set to -1.
721
+ */
722
+ get: function () {
723
+ return this.getAttr('dimdec');
724
+ },
725
+ set: function (value) {
726
+ this.setAttr('dimdec', value);
727
+ },
728
+ enumerable: false,
729
+ configurable: true
730
+ });
731
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtdec", {
732
+ /**
733
+ * Dimension tolerance decimal places. This property controls the number of decimal places to display
734
+ * in tolerance values for the primary units in a dimension. This property has no effect unless DIMTOL
735
+ * is set to On. The default for DIMTOL is Off.
736
+ */
737
+ get: function () {
738
+ return this.getAttr('dimtdec');
739
+ },
740
+ set: function (value) {
741
+ this.setAttr('dimtdec', value);
742
+ },
743
+ enumerable: false,
744
+ configurable: true
745
+ });
746
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimaltu", {
747
+ /**
748
+ * Dimension alternate unit format. This property controls the units format for alternate units of
749
+ * all dimension substyles except Angular. The value of this property include:
750
+ * - 1: Scientific
751
+ * - 2: Decimal
752
+ * - 3: Engineering
753
+ * - 4: Architectural (stacked)
754
+ * - 5: Fractional (stacked)
755
+ * - 6: Architectural
756
+ * - 7: Fractional
757
+ * - 8: Microsoft Windows Desktop (decimal format using Control Panel settings for decimal separator
758
+ * and number grouping symbols)
759
+ */
760
+ get: function () {
761
+ return this.getAttr('dimaltu');
762
+ },
763
+ set: function (value) {
764
+ this.setAttr('dimaltu', value);
765
+ },
766
+ enumerable: false,
767
+ configurable: true
768
+ });
769
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimalttd", {
770
+ /**
771
+ * Dimension alternate tolerance decimal places. This property controls the number of decimal places
772
+ * for the tolerance values in the alternate units of a dimension.
773
+ */
774
+ get: function () {
775
+ return this.getAttr('dimalttd');
776
+ },
777
+ set: function (value) {
778
+ this.setAttr('dimalttd', value);
779
+ },
780
+ enumerable: false,
781
+ configurable: true
782
+ });
783
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimaunit", {
784
+ /**
785
+ * Dimension angular units. This property controls the units format for angular dimensions.
786
+ * - 0: Decimal degrees
787
+ * - 1: Degrees/minutes/seconds
788
+ * - 2: Gradians
789
+ * - 3: Radians
790
+ */
791
+ get: function () {
792
+ return this.getAttr('dimaunit');
793
+ },
794
+ set: function (value) {
795
+ this.setAttr('dimaunit', value);
796
+ },
797
+ enumerable: false,
798
+ configurable: true
799
+ });
800
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimfrac", {
801
+ /**
802
+ * Dimension fraction format. This property controls the fraction format when DIMLUNIT is set to 4
803
+ * (Architectural) or 5 (Fractional).
804
+ * - 0: Horizontal stacking
805
+ * - 1: Diagonal stacking
806
+ * - 2: Not stacked (for example, 1/2)
807
+ */
808
+ get: function () {
809
+ return this.getAttr('dimfrac');
810
+ },
811
+ set: function (value) {
812
+ this.setAttr('dimfrac', value);
813
+ },
814
+ enumerable: false,
815
+ configurable: true
816
+ });
817
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimlunit", {
818
+ /**
819
+ * Dimension linear units. This property controls units for all dimension types except angular.
820
+ * The value of this property include:
821
+ * - 1: Scientific
822
+ * - 2: Decimal
823
+ * - 3: Engineering
824
+ * - 4: Architectural (always displayed stacked)
825
+ * - 5: Fractional (always displayed stacked)
826
+ * - 6: Microsoft Windows Desktop (decimal format using Control Panel settings for decimal separator
827
+ * and number grouping symbols)
828
+ */
829
+ get: function () {
830
+ return this.getAttr('dimlunit');
831
+ },
832
+ set: function (value) {
833
+ this.setAttr('dimlunit', value);
834
+ },
835
+ enumerable: false,
836
+ configurable: true
837
+ });
838
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimdsep", {
839
+ /**
840
+ * Dimension decimal separator. This property is used to specifies a single-character decimal separator
841
+ * to use when creating dimensions whose unit format is decimal.
842
+ */
843
+ get: function () {
844
+ return this.getAttr('dimdsep');
845
+ },
846
+ set: function (value) {
847
+ this.setAttr('dimdsep', value);
848
+ },
849
+ enumerable: false,
850
+ configurable: true
851
+ });
852
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtmove", {
853
+ /**
854
+ * Dimension text movement. This property is used to set dimension text movement rules.
855
+ * - 0: Moves the dimension line with dimension text
856
+ * - 1: Adds a leader when dimension text is moved
857
+ * - 2: Allows text to be moved freely without a leader
858
+ */
859
+ get: function () {
860
+ return this.getAttr('dimtmove');
861
+ },
862
+ set: function (value) {
863
+ this.setAttr('dimtmove', value);
864
+ },
865
+ enumerable: false,
866
+ configurable: true
867
+ });
868
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimjust", {
869
+ /**
870
+ * Dimension text justification. This property controls the horizontal positioning of dimension text.
871
+ * - 0: Positions the text above the dimension line and center-justifies it between the extension lines
872
+ * - 1: Positions the text next to the first extension line
873
+ * - 2: Positions the text next to the second extension line
874
+ * - 3: Positions the text above and aligned with the first extension line
875
+ * - 4: Positions the text above and aligned with the second extension line
876
+ */
877
+ get: function () {
878
+ return this.getAttr('dimjust');
879
+ },
880
+ set: function (value) {
881
+ this.setAttr('dimjust', value);
882
+ },
883
+ enumerable: false,
884
+ configurable: true
885
+ });
886
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimsd1", {
887
+ /**
888
+ * Suppress first dimension line. This property controls suppression of the first dimension line
889
+ * and arrowhead. When turned on, suppresses the display of the dimension line and arrowhead
890
+ * between the first extension line and the text.
891
+ * - 0: First dimension line is not suppressed
892
+ * - 1: First dimension line is suppressed
893
+ */
894
+ get: function () {
895
+ return this.getAttr('dimsd1');
896
+ },
897
+ set: function (value) {
898
+ this.setAttr('dimsd1', value);
899
+ },
900
+ enumerable: false,
901
+ configurable: true
902
+ });
903
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimsd2", {
904
+ /**
905
+ * Suppress second dimension line. This property controls suppression of the second dimension line
906
+ * and arrowhead. When turned on, suppresses the display of the dimension line and arrowhead
907
+ * between the second extension line and the text.
908
+ * - 0: Second dimension line is not suppressed
909
+ * - 1: Second dimension line is suppressed
910
+ */
911
+ get: function () {
912
+ return this.getAttr('dimsd2');
913
+ },
914
+ set: function (value) {
915
+ this.setAttr('dimsd2', value);
916
+ },
917
+ enumerable: false,
918
+ configurable: true
919
+ });
920
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtolj", {
921
+ /**
922
+ * Dimension tolerance justification. This property sets the vertical justification for tolerance
923
+ * values relative to the nominal dimension text. This property has no effect unless DIMTOL is set
924
+ * to On. The default for DIMTOL is Off.
925
+ * - 0: Bottom
926
+ * - 1: Middle
927
+ * - 2: Top
928
+ */
929
+ get: function () {
930
+ return this.getAttr('dimtolj');
931
+ },
932
+ set: function (value) {
933
+ this.setAttr('dimtolj', value);
934
+ },
935
+ enumerable: false,
936
+ configurable: true
937
+ });
938
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtzin", {
939
+ /**
940
+ * Dimension tolerance zero suppress. This property controls the suppression of zeros in tolerance values.
941
+ * Values 0-3 affect feet-and-inch dimensions only.
942
+ * - 0: Suppresses zero feet and precisely zero inches
943
+ * - 1: Includes zero feet and precisely zero inches
944
+ * - 2: Includes zero feet and suppresses zero inches
945
+ * - 3: Includes zero inches and suppresses zero feet
946
+ * - 4: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
947
+ * - 8: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
948
+ * - 12: Suppresses both leading and trailing zeros (for example, 0.5000 becomes .5)
949
+ */
950
+ get: function () {
951
+ return this.getAttr('dimtzin');
952
+ },
953
+ set: function (value) {
954
+ this.setAttr('dimtzin', value);
955
+ },
956
+ enumerable: false,
957
+ configurable: true
958
+ });
959
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimaltz", {
960
+ /**
961
+ * Dimension alternate unit zero suppress. This property controls the suppression of zeros for
962
+ * alternate unit dimension values. DIMALTZ values 0-3 affect feet-and-inch dimensions only.
963
+ * - 0: Suppresses zero feet and precisely zero inches
964
+ * - 1: Includes zero feet and precisely zero inches
965
+ * - 2: Includes zero feet and suppresses zero inches
966
+ * - 3: Includes zero inches and suppresses zero feet
967
+ * - 4: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
968
+ * - 8: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
969
+ * - 12: Suppresses both leading and trailing zeros (for example, 0.5000 becomes .5)
970
+ */
971
+ get: function () {
972
+ return this.getAttr('dimaltz');
973
+ },
974
+ set: function (value) {
975
+ this.setAttr('dimaltz', value);
976
+ },
977
+ enumerable: false,
978
+ configurable: true
979
+ });
980
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimalttz", {
981
+ /**
982
+ * Dimension alternate tolerance zero suppress. This property controls suppression of zeros in
983
+ * tolerance values.
984
+ * - 0: Suppresses zero feet and precisely zero inches
985
+ * - 1: Includes zero feet and precisely zero inches
986
+ * - 2: Includes zero feet and suppresses zero inches
987
+ * - 3: Includes zero inches and suppresses zero feet
988
+ *
989
+ * To suppress leading or trailing zeros, add the following values to one of the preceding values:
990
+ * - 4: Suppresses leading zeros
991
+ * - 8: Suppresses trailing zeros
992
+ */
993
+ get: function () {
994
+ return this.getAttr('dimalttz');
995
+ },
996
+ set: function (value) {
997
+ this.setAttr('dimalttz', value);
998
+ },
999
+ enumerable: false,
1000
+ configurable: true
1001
+ });
1002
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimfit", {
1003
+ /**
1004
+ * Dimension fit. This property controls how dimension text fits within the dimension line.
1005
+ * The value of this property include:
1006
+ * - 0: Fit (default) – The dimension text is placed outside the dimension lines if it does not fit inside.
1007
+ * - 1: Above – The dimension text is placed above the dimension line.
1008
+ * - 2: Center – The dimension text is centered between the extension lines.
1009
+ * With the default setting of 0, the software automatically positions the dimension text based on
1010
+ * available space.
1011
+ */
1012
+ get: function () {
1013
+ return this.getAttr('dimfit');
1014
+ },
1015
+ set: function (value) {
1016
+ this.setAttr('dimfit', value);
1017
+ },
1018
+ enumerable: false,
1019
+ configurable: true
1020
+ });
1021
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimupt", {
1022
+ /**
1023
+ * Dimension update. This property controls options for user-positioned text.
1024
+ * - 0: Cursor controls only the dimension line location
1025
+ * - 1: Cursor controls both the text position and the dimension line location
1026
+ */
1027
+ get: function () {
1028
+ return this.getAttr('dimupt');
1029
+ },
1030
+ set: function (value) {
1031
+ this.setAttr('dimupt', value);
1032
+ },
1033
+ enumerable: false,
1034
+ configurable: true
1035
+ });
1036
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimatfit", {
1037
+ /**
1038
+ * Dimension angular tolerance fit. This property determines how dimension text and arrows are
1039
+ * arranged when space is not sufficient to place both within the extension lines.
1040
+ * - 0: Places both text and arrows outside extension lines
1041
+ * - 1: Moves arrows first, then text
1042
+ * - 2: Moves text first, then arrows
1043
+ * - 3: Moves either text or arrows, whichever fits best
1044
+ * A leader is added to moved dimension text when DIMTMOVE is set to 1.
1045
+ */
1046
+ get: function () {
1047
+ return this.getAttr('dimatfit');
1048
+ },
1049
+ set: function (value) {
1050
+ this.setAttr('dimatfit', value);
1051
+ },
1052
+ enumerable: false,
1053
+ configurable: true
1054
+ });
1055
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimtxsty", {
1056
+ /**
1057
+ * Dimension text style. This property specifies the text style of the dimension.
1058
+ */
1059
+ get: function () {
1060
+ return this.getAttr('dimtxsty');
1061
+ },
1062
+ set: function (value) {
1063
+ this.setAttr('dimtxsty', value);
1064
+ },
1065
+ enumerable: false,
1066
+ configurable: true
1067
+ });
1068
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimldrblk", {
1069
+ /**
1070
+ * Dimension leader block. This property specifies the arrow type for leaders. To return to the
1071
+ * default, closed-filled arrowhead display, enter a single period (.). For a list of arrowhead
1072
+ * entries, see DIMBLK.
1073
+ * Note: Annotative blocks cannot be used as custom arrowheads for dimensions or leaders.
1074
+ */
1075
+ get: function () {
1076
+ return this.getAttr('dimldrblk');
1077
+ },
1078
+ set: function (value) {
1079
+ this.setAttr('dimldrblk', value);
1080
+ },
1081
+ enumerable: false,
1082
+ configurable: true
1083
+ });
1084
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimblk", {
1085
+ /**
1086
+ * Dimension arrowhead block. This property controls the arrowhead block displayed at the ends of
1087
+ * dimension lines.
1088
+ */
1089
+ get: function () {
1090
+ return this.getAttr('dimblk');
1091
+ },
1092
+ set: function (value) {
1093
+ this.setAttr('dimblk', value);
1094
+ },
1095
+ enumerable: false,
1096
+ configurable: true
1097
+ });
1098
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimblk1", {
1099
+ /**
1100
+ * Dimension arrowhead block for the first arrow. This property controls the arrowhead for the
1101
+ * first end of the dimension line when DIMSAH is on.
1102
+ */
1103
+ get: function () {
1104
+ return this.getAttr('dimblk1');
1105
+ },
1106
+ set: function (value) {
1107
+ this.setAttr('dimblk1', value);
1108
+ },
1109
+ enumerable: false,
1110
+ configurable: true
1111
+ });
1112
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimblk2", {
1113
+ /**
1114
+ * Dimension arrowhead block for the second arrow. This property controls the arrowhead for the
1115
+ * second end of the dimension line when DIMSAH is on.
1116
+ */
1117
+ get: function () {
1118
+ return this.getAttr('dimblk2');
1119
+ },
1120
+ set: function (value) {
1121
+ this.setAttr('dimblk2', value);
1122
+ },
1123
+ enumerable: false,
1124
+ configurable: true
1125
+ });
1126
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimlwd", {
1127
+ /**
1128
+ * Dimension line weight. This property controls lineweight to dimension lines.
1129
+ * - -1: Sets the lineweight to "BYLAYER."
1130
+ * - -2: Sets the lineweight to "BYBLOCK."
1131
+ * - -3: Sets the lineweight to "DEFAULT." "DEFAULT" is controlled by the LWDEFAULT system variable.
1132
+ * Other valid values entered in hundredths of millimeters include 0, 5, 9, 13, 15, 18, 20, 25, 30,
1133
+ * 35, 40, 50, 53, 60, 70, 80, 90, 100, 106, 120, 140, 158, 200, and 211.
1134
+ * All values must be entered in hundredths of millimeters. (Multiply a value by 2540 to convert
1135
+ * values from inches to hundredths of millimeters.)
1136
+ */
1137
+ get: function () {
1138
+ return this.getAttr('dimlwd');
1139
+ },
1140
+ set: function (value) {
1141
+ this.setAttr('dimlwd', value);
1142
+ },
1143
+ enumerable: false,
1144
+ configurable: true
1145
+ });
1146
+ Object.defineProperty(AcDbDimStyleTableRecord.prototype, "dimlwe", {
1147
+ /**
1148
+ * Dimension line weight for extension lines. This property controls lineweight to extension lines.
1149
+ * - -1: Sets the lineweight to "BYLAYER."
1150
+ * - -2: Sets the lineweight to "BYBLOCK."
1151
+ * - -3: Sets the lineweight to "DEFAULT." "DEFAULT" is controlled by the LWDEFAULT system variable.
1152
+ * Other valid values entered in hundredths of millimeters include 0, 5, 9, 13, 15, 18, 20, 25, 30,
1153
+ * 35, 40, 50, 53, 60, 70, 80, 90, 100, 106, 120, 140, 158, 200, and 211.
1154
+ * All values must be entered in hundredths of millimeters. (Multiply a value by 2540 to convert
1155
+ * values from inches to hundredths of millimeters.)
1156
+ */
1157
+ get: function () {
1158
+ return this.getAttr('dimlwe');
1159
+ },
1160
+ set: function (value) {
1161
+ this.setAttr('dimlwe', value);
1162
+ },
1163
+ enumerable: false,
1164
+ configurable: true
1165
+ });
1166
+ AcDbDimStyleTableRecord.DEFAULT_DIM_VALUES = {
1167
+ name: '',
1168
+ dimpost: '',
1169
+ dimapost: '',
1170
+ dimscale: 1.0,
1171
+ dimasz: 2.5,
1172
+ dimexo: 0.625,
1173
+ dimdli: 0.38,
1174
+ dimexe: 0.18,
1175
+ dimrnd: 0.0,
1176
+ dimdle: 0.0,
1177
+ dimtp: 0.0,
1178
+ dimtm: 0.0,
1179
+ dimtxt: 2.5,
1180
+ dimcen: 2.5,
1181
+ dimtsz: 0.0,
1182
+ dimaltf: 0,
1183
+ dimlfac: 1.0,
1184
+ dimtvp: 0.0,
1185
+ dimtfac: 1.0,
1186
+ dimgap: 1.0,
1187
+ dimaltrnd: 0.0,
1188
+ dimtol: 0,
1189
+ dimlim: 0,
1190
+ // TODO: Its initial value is 1 (imperial) or 0 (metric)
1191
+ dimtih: 0,
1192
+ // TODO: Its initial value is 1 (imperial) or 0 (metric)
1193
+ dimtoh: 0,
1194
+ dimse1: 0,
1195
+ dimse2: 0,
1196
+ // TODO: Its initial value is 0 (imperial) or 1 (metric)
1197
+ dimtad: AcDbDimTextVertical.Center,
1198
+ // TODO: Its initial value is 0 (imperial) or 8 (metric)
1199
+ dimzin: AcDbDimZeroSuppression.Feet,
1200
+ dimazin: AcDbDimZeroSuppressionAngular.None,
1201
+ dimalt: 0,
1202
+ // TODO: Its initial value is 2 (imperial) or 3 (metric)
1203
+ dimaltd: 2,
1204
+ // TODO: Its initial value is 0 (imperial) or 1 (metric)
1205
+ dimtofl: 0,
1206
+ dimsah: 0,
1207
+ dimtix: 0,
1208
+ dimsoxd: 0,
1209
+ dimclrd: 0,
1210
+ dimclre: 0,
1211
+ dimclrt: 0,
1212
+ dimadec: 0,
1213
+ dimunit: 2,
1214
+ // TODO: Its initial value is 4 (imperial) or 2 (metric).
1215
+ dimdec: 4,
1216
+ // TODO: Its initial value is 4 (imperial) or 2 (metric).
1217
+ dimtdec: 4,
1218
+ dimaltu: 2,
1219
+ // TODO: Its initial value is 2 (imperial) or 3 (metric)
1220
+ dimalttd: 2,
1221
+ dimaunit: 0,
1222
+ dimfrac: 0,
1223
+ dimlunit: 2,
1224
+ // TODO: Its initial value is '.' (imperial) or ',' (metric)
1225
+ dimdsep: '.',
1226
+ dimtmove: 0,
1227
+ dimjust: AcDbDimTextHorizontal.Center,
1228
+ dimsd1: 0,
1229
+ dimsd2: 0,
1230
+ // TODO: Its initial value is 1 (imperial) or 0 (metric)
1231
+ dimtolj: AcDbDimVerticalJustification.Bottom,
1232
+ // TODO: Its initial value is 0 (imperial) or 8 (metric)
1233
+ dimtzin: AcDbDimZeroSuppression.Feet,
1234
+ dimaltz: AcDbDimZeroSuppression.Feet,
1235
+ dimalttz: AcDbDimZeroSuppression.Feet,
1236
+ dimfit: 0,
1237
+ dimupt: 0,
1238
+ dimatfit: 3,
1239
+ dimtxsty: 'Standard',
1240
+ dimldrblk: '',
1241
+ dimblk: '',
1242
+ dimblk1: '',
1243
+ dimblk2: '',
1244
+ dimlwd: -2,
1245
+ dimlwe: -2
1246
+ };
1247
+ return AcDbDimStyleTableRecord;
1248
+ }(AcDbSymbolTableRecord));
1249
+ export { AcDbDimStyleTableRecord };
1250
+ //# sourceMappingURL=AcDbDimStyleTableRecord.js.map