@mlightcad/data-model 1.3.3 → 1.3.5

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 (344) hide show
  1. package/dist/data-model.cjs +5 -0
  2. package/dist/data-model.js +25995 -0
  3. package/dist/dxf-parser-worker.js +1715 -0
  4. package/lib/base/AcDbHostApplicationServices.d.ts +96 -0
  5. package/lib/base/AcDbHostApplicationServices.d.ts.map +1 -0
  6. package/lib/base/AcDbHostApplicationServices.js +118 -0
  7. package/lib/base/AcDbHostApplicationServices.js.map +1 -0
  8. package/lib/base/AcDbObject.d.ts +205 -0
  9. package/lib/base/AcDbObject.d.ts.map +1 -0
  10. package/lib/base/AcDbObject.js +236 -0
  11. package/lib/base/AcDbObject.js.map +1 -0
  12. package/lib/base/index.d.ts +3 -0
  13. package/lib/base/index.d.ts.map +1 -0
  14. package/lib/base/index.js +3 -0
  15. package/lib/base/index.js.map +1 -0
  16. package/lib/converter/AcDbBatchProcessing.d.ts +146 -0
  17. package/lib/converter/AcDbBatchProcessing.d.ts.map +1 -0
  18. package/lib/converter/AcDbBatchProcessing.js +272 -0
  19. package/lib/converter/AcDbBatchProcessing.js.map +1 -0
  20. package/lib/converter/AcDbDxfConverter.d.ts +272 -0
  21. package/lib/converter/AcDbDxfConverter.d.ts.map +1 -0
  22. package/lib/converter/AcDbDxfConverter.js +883 -0
  23. package/lib/converter/AcDbDxfConverter.js.map +1 -0
  24. package/lib/converter/AcDbDxfParser.d.ts +23 -0
  25. package/lib/converter/AcDbDxfParser.d.ts.map +1 -0
  26. package/lib/converter/AcDbDxfParser.js +85 -0
  27. package/lib/converter/AcDbDxfParser.js.map +1 -0
  28. package/lib/converter/AcDbEntitiyConverter.d.ts +160 -0
  29. package/lib/converter/AcDbEntitiyConverter.d.ts.map +1 -0
  30. package/lib/converter/AcDbEntitiyConverter.js +708 -0
  31. package/lib/converter/AcDbEntitiyConverter.js.map +1 -0
  32. package/lib/converter/AcDbObjectConverter.d.ts +61 -0
  33. package/lib/converter/AcDbObjectConverter.d.ts.map +1 -0
  34. package/lib/converter/AcDbObjectConverter.js +91 -0
  35. package/lib/converter/AcDbObjectConverter.js.map +1 -0
  36. package/lib/converter/AcDbRegenerator.d.ts +101 -0
  37. package/lib/converter/AcDbRegenerator.d.ts.map +1 -0
  38. package/lib/converter/AcDbRegenerator.js +334 -0
  39. package/lib/converter/AcDbRegenerator.js.map +1 -0
  40. package/lib/converter/index.d.ts +5 -0
  41. package/lib/converter/index.d.ts.map +1 -0
  42. package/lib/converter/index.js +5 -0
  43. package/lib/converter/index.js.map +1 -0
  44. package/lib/converter/worker/AcDbBaseWorker.d.ts +36 -0
  45. package/lib/converter/worker/AcDbBaseWorker.d.ts.map +1 -0
  46. package/lib/converter/worker/AcDbBaseWorker.js +93 -0
  47. package/lib/converter/worker/AcDbBaseWorker.js.map +1 -0
  48. package/lib/converter/worker/AcDbDxfParserWorker.d.ts +11 -0
  49. package/lib/converter/worker/AcDbDxfParserWorker.d.ts.map +1 -0
  50. package/lib/converter/worker/AcDbDxfParserWorker.js +75 -0
  51. package/lib/converter/worker/AcDbDxfParserWorker.js.map +1 -0
  52. package/lib/converter/worker/AcDbWorkerManager.d.ts +107 -0
  53. package/lib/converter/worker/AcDbWorkerManager.d.ts.map +1 -0
  54. package/lib/converter/worker/AcDbWorkerManager.js +360 -0
  55. package/lib/converter/worker/AcDbWorkerManager.js.map +1 -0
  56. package/lib/converter/worker/index.d.ts +3 -0
  57. package/lib/converter/worker/index.d.ts.map +1 -0
  58. package/lib/converter/worker/index.js +3 -0
  59. package/lib/converter/worker/index.js.map +1 -0
  60. package/lib/database/AcDbBlockTable.d.ts +56 -0
  61. package/lib/database/AcDbBlockTable.d.ts.map +1 -0
  62. package/lib/database/AcDbBlockTable.js +98 -0
  63. package/lib/database/AcDbBlockTable.js.map +1 -0
  64. package/lib/database/AcDbBlockTableRecord.d.ts +185 -0
  65. package/lib/database/AcDbBlockTableRecord.d.ts.map +1 -0
  66. package/lib/database/AcDbBlockTableRecord.js +261 -0
  67. package/lib/database/AcDbBlockTableRecord.js.map +1 -0
  68. package/lib/database/AcDbDatabase.d.ts +563 -0
  69. package/lib/database/AcDbDatabase.d.ts.map +1 -0
  70. package/lib/database/AcDbDatabase.js +842 -0
  71. package/lib/database/AcDbDatabase.js.map +1 -0
  72. package/lib/database/AcDbDatabaseConverter.d.ts +292 -0
  73. package/lib/database/AcDbDatabaseConverter.d.ts.map +1 -0
  74. package/lib/database/AcDbDatabaseConverter.js +448 -0
  75. package/lib/database/AcDbDatabaseConverter.js.map +1 -0
  76. package/lib/database/AcDbDatabaseConverterManager.d.ts +141 -0
  77. package/lib/database/AcDbDatabaseConverterManager.d.ts.map +1 -0
  78. package/lib/database/AcDbDatabaseConverterManager.js +173 -0
  79. package/lib/database/AcDbDatabaseConverterManager.js.map +1 -0
  80. package/lib/database/AcDbDimStyleTable.d.ts +31 -0
  81. package/lib/database/AcDbDimStyleTable.d.ts.map +1 -0
  82. package/lib/database/AcDbDimStyleTable.js +49 -0
  83. package/lib/database/AcDbDimStyleTable.js.map +1 -0
  84. package/lib/database/AcDbDimStyleTableRecord.d.ts +797 -0
  85. package/lib/database/AcDbDimStyleTableRecord.d.ts.map +1 -0
  86. package/lib/database/AcDbDimStyleTableRecord.js +1294 -0
  87. package/lib/database/AcDbDimStyleTableRecord.js.map +1 -0
  88. package/lib/database/AcDbDwgVersion.d.ts +32 -0
  89. package/lib/database/AcDbDwgVersion.d.ts.map +1 -0
  90. package/lib/database/AcDbDwgVersion.js +126 -0
  91. package/lib/database/AcDbDwgVersion.js.map +1 -0
  92. package/lib/database/AcDbLayerTable.d.ts +51 -0
  93. package/lib/database/AcDbLayerTable.d.ts.map +1 -0
  94. package/lib/database/AcDbLayerTable.js +92 -0
  95. package/lib/database/AcDbLayerTable.js.map +1 -0
  96. package/lib/database/AcDbLayerTableRecord.d.ts +278 -0
  97. package/lib/database/AcDbLayerTableRecord.d.ts.map +1 -0
  98. package/lib/database/AcDbLayerTableRecord.js +397 -0
  99. package/lib/database/AcDbLayerTableRecord.js.map +1 -0
  100. package/lib/database/AcDbLinetypeTable.d.ts +30 -0
  101. package/lib/database/AcDbLinetypeTable.d.ts.map +1 -0
  102. package/lib/database/AcDbLinetypeTable.js +48 -0
  103. package/lib/database/AcDbLinetypeTable.js.map +1 -0
  104. package/lib/database/AcDbLinetypeTableRecord.d.ts +79 -0
  105. package/lib/database/AcDbLinetypeTableRecord.d.ts.map +1 -0
  106. package/lib/database/AcDbLinetypeTableRecord.js +129 -0
  107. package/lib/database/AcDbLinetypeTableRecord.js.map +1 -0
  108. package/lib/database/AcDbSymbolTable.d.ts +199 -0
  109. package/lib/database/AcDbSymbolTable.d.ts.map +1 -0
  110. package/lib/database/AcDbSymbolTable.js +264 -0
  111. package/lib/database/AcDbSymbolTable.js.map +1 -0
  112. package/lib/database/AcDbSymbolTableRecord.d.ts +61 -0
  113. package/lib/database/AcDbSymbolTableRecord.d.ts.map +1 -0
  114. package/lib/database/AcDbSymbolTableRecord.js +82 -0
  115. package/lib/database/AcDbSymbolTableRecord.js.map +1 -0
  116. package/lib/database/AcDbTextStyleTable.d.ts +48 -0
  117. package/lib/database/AcDbTextStyleTable.d.ts.map +1 -0
  118. package/lib/database/AcDbTextStyleTable.js +112 -0
  119. package/lib/database/AcDbTextStyleTable.js.map +1 -0
  120. package/lib/database/AcDbTextStyleTableRecord.d.ts +179 -0
  121. package/lib/database/AcDbTextStyleTableRecord.d.ts.map +1 -0
  122. package/lib/database/AcDbTextStyleTableRecord.js +276 -0
  123. package/lib/database/AcDbTextStyleTableRecord.js.map +1 -0
  124. package/lib/database/AcDbViewportTable.d.ts +31 -0
  125. package/lib/database/AcDbViewportTable.d.ts.map +1 -0
  126. package/lib/database/AcDbViewportTable.js +49 -0
  127. package/lib/database/AcDbViewportTable.js.map +1 -0
  128. package/lib/database/AcDbViewportTableRecord.d.ts +154 -0
  129. package/lib/database/AcDbViewportTableRecord.d.ts.map +1 -0
  130. package/lib/database/AcDbViewportTableRecord.js +318 -0
  131. package/lib/database/AcDbViewportTableRecord.js.map +1 -0
  132. package/lib/database/index.d.ts +19 -0
  133. package/lib/database/index.d.ts.map +1 -0
  134. package/lib/database/index.js +19 -0
  135. package/lib/database/index.js.map +1 -0
  136. package/lib/entity/AcDb2dPolyline.d.ts +146 -0
  137. package/lib/entity/AcDb2dPolyline.d.ts.map +1 -0
  138. package/lib/entity/AcDb2dPolyline.js +220 -0
  139. package/lib/entity/AcDb2dPolyline.js.map +1 -0
  140. package/lib/entity/AcDb2dVertex.d.ts +143 -0
  141. package/lib/entity/AcDb2dVertex.d.ts.map +1 -0
  142. package/lib/entity/AcDb2dVertex.js +210 -0
  143. package/lib/entity/AcDb2dVertex.js.map +1 -0
  144. package/lib/entity/AcDb3dPolyline.d.ts +102 -0
  145. package/lib/entity/AcDb3dPolyline.d.ts.map +1 -0
  146. package/lib/entity/AcDb3dPolyline.js +158 -0
  147. package/lib/entity/AcDb3dPolyline.js.map +1 -0
  148. package/lib/entity/AcDb3dVertex.d.ts +83 -0
  149. package/lib/entity/AcDb3dVertex.d.ts.map +1 -0
  150. package/lib/entity/AcDb3dVertex.js +133 -0
  151. package/lib/entity/AcDb3dVertex.js.map +1 -0
  152. package/lib/entity/AcDbArc.d.ts +254 -0
  153. package/lib/entity/AcDbArc.d.ts.map +1 -0
  154. package/lib/entity/AcDbArc.js +340 -0
  155. package/lib/entity/AcDbArc.js.map +1 -0
  156. package/lib/entity/AcDbBlockReference.d.ts +190 -0
  157. package/lib/entity/AcDbBlockReference.d.ts.map +1 -0
  158. package/lib/entity/AcDbBlockReference.js +302 -0
  159. package/lib/entity/AcDbBlockReference.js.map +1 -0
  160. package/lib/entity/AcDbCircle.d.ts +186 -0
  161. package/lib/entity/AcDbCircle.d.ts.map +1 -0
  162. package/lib/entity/AcDbCircle.js +249 -0
  163. package/lib/entity/AcDbCircle.js.map +1 -0
  164. package/lib/entity/AcDbCurve.d.ts +42 -0
  165. package/lib/entity/AcDbCurve.d.ts.map +1 -0
  166. package/lib/entity/AcDbCurve.js +44 -0
  167. package/lib/entity/AcDbCurve.js.map +1 -0
  168. package/lib/entity/AcDbEllipse.d.ts +207 -0
  169. package/lib/entity/AcDbEllipse.d.ts.map +1 -0
  170. package/lib/entity/AcDbEllipse.js +272 -0
  171. package/lib/entity/AcDbEllipse.js.map +1 -0
  172. package/lib/entity/AcDbEntity.d.ts +385 -0
  173. package/lib/entity/AcDbEntity.d.ts.map +1 -0
  174. package/lib/entity/AcDbEntity.js +561 -0
  175. package/lib/entity/AcDbEntity.js.map +1 -0
  176. package/lib/entity/AcDbFace.d.ts +151 -0
  177. package/lib/entity/AcDbFace.d.ts.map +1 -0
  178. package/lib/entity/AcDbFace.js +224 -0
  179. package/lib/entity/AcDbFace.js.map +1 -0
  180. package/lib/entity/AcDbHatch.d.ts +174 -0
  181. package/lib/entity/AcDbHatch.d.ts.map +1 -0
  182. package/lib/entity/AcDbHatch.js +250 -0
  183. package/lib/entity/AcDbHatch.js.map +1 -0
  184. package/lib/entity/AcDbLeader.d.ts +243 -0
  185. package/lib/entity/AcDbLeader.d.ts.map +1 -0
  186. package/lib/entity/AcDbLeader.js +358 -0
  187. package/lib/entity/AcDbLeader.js.map +1 -0
  188. package/lib/entity/AcDbLine.d.ts +198 -0
  189. package/lib/entity/AcDbLine.d.ts.map +1 -0
  190. package/lib/entity/AcDbLine.js +300 -0
  191. package/lib/entity/AcDbLine.js.map +1 -0
  192. package/lib/entity/AcDbMText.d.ts +248 -0
  193. package/lib/entity/AcDbMText.d.ts.map +1 -0
  194. package/lib/entity/AcDbMText.js +414 -0
  195. package/lib/entity/AcDbMText.js.map +1 -0
  196. package/lib/entity/AcDbPoint.d.ts +113 -0
  197. package/lib/entity/AcDbPoint.d.ts.map +1 -0
  198. package/lib/entity/AcDbPoint.js +155 -0
  199. package/lib/entity/AcDbPoint.js.map +1 -0
  200. package/lib/entity/AcDbPolyline.d.ts +221 -0
  201. package/lib/entity/AcDbPolyline.d.ts.map +1 -0
  202. package/lib/entity/AcDbPolyline.js +301 -0
  203. package/lib/entity/AcDbPolyline.js.map +1 -0
  204. package/lib/entity/AcDbRasterImage.d.ts +216 -0
  205. package/lib/entity/AcDbRasterImage.d.ts.map +1 -0
  206. package/lib/entity/AcDbRasterImage.js +451 -0
  207. package/lib/entity/AcDbRasterImage.js.map +1 -0
  208. package/lib/entity/AcDbRay.d.ts +150 -0
  209. package/lib/entity/AcDbRay.d.ts.map +1 -0
  210. package/lib/entity/AcDbRay.js +208 -0
  211. package/lib/entity/AcDbRay.js.map +1 -0
  212. package/lib/entity/AcDbSpline.d.ts +135 -0
  213. package/lib/entity/AcDbSpline.d.ts.map +1 -0
  214. package/lib/entity/AcDbSpline.js +142 -0
  215. package/lib/entity/AcDbSpline.js.map +1 -0
  216. package/lib/entity/AcDbTable.d.ts +260 -0
  217. package/lib/entity/AcDbTable.d.ts.map +1 -0
  218. package/lib/entity/AcDbTable.js +452 -0
  219. package/lib/entity/AcDbTable.js.map +1 -0
  220. package/lib/entity/AcDbText.d.ts +388 -0
  221. package/lib/entity/AcDbText.d.ts.map +1 -0
  222. package/lib/entity/AcDbText.js +523 -0
  223. package/lib/entity/AcDbText.js.map +1 -0
  224. package/lib/entity/AcDbTrace.d.ts +193 -0
  225. package/lib/entity/AcDbTrace.d.ts.map +1 -0
  226. package/lib/entity/AcDbTrace.js +271 -0
  227. package/lib/entity/AcDbTrace.js.map +1 -0
  228. package/lib/entity/AcDbViewport.d.ts +173 -0
  229. package/lib/entity/AcDbViewport.d.ts.map +1 -0
  230. package/lib/entity/AcDbViewport.js +295 -0
  231. package/lib/entity/AcDbViewport.js.map +1 -0
  232. package/lib/entity/AcDbWipeout.d.ts +39 -0
  233. package/lib/entity/AcDbWipeout.d.ts.map +1 -0
  234. package/lib/entity/AcDbWipeout.js +70 -0
  235. package/lib/entity/AcDbWipeout.js.map +1 -0
  236. package/lib/entity/AcDbXline.d.ts +151 -0
  237. package/lib/entity/AcDbXline.d.ts.map +1 -0
  238. package/lib/entity/AcDbXline.js +209 -0
  239. package/lib/entity/AcDbXline.js.map +1 -0
  240. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts +92 -0
  241. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts.map +1 -0
  242. package/lib/entity/dimension/AcDb3PointAngularDimension.js +157 -0
  243. package/lib/entity/dimension/AcDb3PointAngularDimension.js.map +1 -0
  244. package/lib/entity/dimension/AcDbAlignedDimension.d.ts +220 -0
  245. package/lib/entity/dimension/AcDbAlignedDimension.d.ts.map +1 -0
  246. package/lib/entity/dimension/AcDbAlignedDimension.js +341 -0
  247. package/lib/entity/dimension/AcDbAlignedDimension.js.map +1 -0
  248. package/lib/entity/dimension/AcDbArcDimension.d.ts +94 -0
  249. package/lib/entity/dimension/AcDbArcDimension.d.ts.map +1 -0
  250. package/lib/entity/dimension/AcDbArcDimension.js +159 -0
  251. package/lib/entity/dimension/AcDbArcDimension.js.map +1 -0
  252. package/lib/entity/dimension/AcDbDiametricDimension.d.ts +145 -0
  253. package/lib/entity/dimension/AcDbDiametricDimension.d.ts.map +1 -0
  254. package/lib/entity/dimension/AcDbDiametricDimension.js +275 -0
  255. package/lib/entity/dimension/AcDbDiametricDimension.js.map +1 -0
  256. package/lib/entity/dimension/AcDbDimension.d.ts +257 -0
  257. package/lib/entity/dimension/AcDbDimension.d.ts.map +1 -0
  258. package/lib/entity/dimension/AcDbDimension.js +466 -0
  259. package/lib/entity/dimension/AcDbDimension.js.map +1 -0
  260. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts +78 -0
  261. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts.map +1 -0
  262. package/lib/entity/dimension/AcDbOrdinateDimension.js +133 -0
  263. package/lib/entity/dimension/AcDbOrdinateDimension.js.map +1 -0
  264. package/lib/entity/dimension/AcDbRadialDimension.d.ts +214 -0
  265. package/lib/entity/dimension/AcDbRadialDimension.d.ts.map +1 -0
  266. package/lib/entity/dimension/AcDbRadialDimension.js +288 -0
  267. package/lib/entity/dimension/AcDbRadialDimension.js.map +1 -0
  268. package/lib/entity/dimension/index.d.ts +8 -0
  269. package/lib/entity/dimension/index.d.ts.map +1 -0
  270. package/lib/entity/dimension/index.js +8 -0
  271. package/lib/entity/dimension/index.js.map +1 -0
  272. package/lib/entity/index.d.ts +28 -0
  273. package/lib/entity/index.d.ts.map +1 -0
  274. package/lib/entity/index.js +28 -0
  275. package/lib/entity/index.js.map +1 -0
  276. package/lib/index.d.ts +10 -0
  277. package/lib/index.d.ts.map +1 -0
  278. package/lib/index.js +10 -0
  279. package/lib/index.js.map +1 -0
  280. package/lib/misc/AcDbAngleUnits.d.ts +20 -0
  281. package/lib/misc/AcDbAngleUnits.d.ts.map +1 -0
  282. package/lib/misc/AcDbAngleUnits.js +21 -0
  283. package/lib/misc/AcDbAngleUnits.js.map +1 -0
  284. package/lib/misc/AcDbCodePage.d.ts +50 -0
  285. package/lib/misc/AcDbCodePage.d.ts.map +1 -0
  286. package/lib/misc/AcDbCodePage.js +100 -0
  287. package/lib/misc/AcDbCodePage.js.map +1 -0
  288. package/lib/misc/AcDbConstants.d.ts +24 -0
  289. package/lib/misc/AcDbConstants.d.ts.map +1 -0
  290. package/lib/misc/AcDbConstants.js +24 -0
  291. package/lib/misc/AcDbConstants.js.map +1 -0
  292. package/lib/misc/AcDbDimArrowType.d.ts +89 -0
  293. package/lib/misc/AcDbDimArrowType.d.ts.map +1 -0
  294. package/lib/misc/AcDbDimArrowType.js +90 -0
  295. package/lib/misc/AcDbDimArrowType.js.map +1 -0
  296. package/lib/misc/AcDbObjectIterator.d.ts +64 -0
  297. package/lib/misc/AcDbObjectIterator.d.ts.map +1 -0
  298. package/lib/misc/AcDbObjectIterator.js +84 -0
  299. package/lib/misc/AcDbObjectIterator.js.map +1 -0
  300. package/lib/misc/AcDbOsnapMode.d.ts +51 -0
  301. package/lib/misc/AcDbOsnapMode.d.ts.map +1 -0
  302. package/lib/misc/AcDbOsnapMode.js +52 -0
  303. package/lib/misc/AcDbOsnapMode.js.map +1 -0
  304. package/lib/misc/AcDbRenderingCache.d.ts +141 -0
  305. package/lib/misc/AcDbRenderingCache.d.ts.map +1 -0
  306. package/lib/misc/AcDbRenderingCache.js +239 -0
  307. package/lib/misc/AcDbRenderingCache.js.map +1 -0
  308. package/lib/misc/AcDbUnitsValue.d.ts +101 -0
  309. package/lib/misc/AcDbUnitsValue.d.ts.map +1 -0
  310. package/lib/misc/AcDbUnitsValue.js +121 -0
  311. package/lib/misc/AcDbUnitsValue.js.map +1 -0
  312. package/lib/misc/index.d.ts +9 -0
  313. package/lib/misc/index.d.ts.map +1 -0
  314. package/lib/misc/index.js +9 -0
  315. package/lib/misc/index.js.map +1 -0
  316. package/lib/object/AcDbDictionary.d.ts +178 -0
  317. package/lib/object/AcDbDictionary.d.ts.map +1 -0
  318. package/lib/object/AcDbDictionary.js +264 -0
  319. package/lib/object/AcDbDictionary.js.map +1 -0
  320. package/lib/object/AcDbRasterImageDef.d.ts +54 -0
  321. package/lib/object/AcDbRasterImageDef.d.ts.map +1 -0
  322. package/lib/object/AcDbRasterImageDef.js +82 -0
  323. package/lib/object/AcDbRasterImageDef.js.map +1 -0
  324. package/lib/object/index.d.ts +4 -0
  325. package/lib/object/index.d.ts.map +1 -0
  326. package/lib/object/index.js +4 -0
  327. package/lib/object/index.js.map +1 -0
  328. package/lib/object/layout/AcDbLayout.d.ts +190 -0
  329. package/lib/object/layout/AcDbLayout.d.ts.map +1 -0
  330. package/lib/object/layout/AcDbLayout.js +253 -0
  331. package/lib/object/layout/AcDbLayout.js.map +1 -0
  332. package/lib/object/layout/AcDbLayoutDictionary.d.ts +47 -0
  333. package/lib/object/layout/AcDbLayoutDictionary.d.ts.map +1 -0
  334. package/lib/object/layout/AcDbLayoutDictionary.js +122 -0
  335. package/lib/object/layout/AcDbLayoutDictionary.js.map +1 -0
  336. package/lib/object/layout/AcDbLayoutManager.d.ts +188 -0
  337. package/lib/object/layout/AcDbLayoutManager.d.ts.map +1 -0
  338. package/lib/object/layout/AcDbLayoutManager.js +245 -0
  339. package/lib/object/layout/AcDbLayoutManager.js.map +1 -0
  340. package/lib/object/layout/index.d.ts +4 -0
  341. package/lib/object/layout/index.d.ts.map +1 -0
  342. package/lib/object/layout/index.js +4 -0
  343. package/lib/object/layout/index.js.map +1 -0
  344. package/package.json +4 -4
@@ -0,0 +1,797 @@
1
+ import { AcDbSymbolTableRecord, AcDbSymbolTableRecordAttrs } from './AcDbSymbolTableRecord';
2
+ /**
3
+ * Controls the horizontal positioning of dimension text relative to the dimension line.
4
+ * This setting affects how dimension text is aligned when it's placed outside the extension lines.
5
+ */
6
+ export declare enum AcDbDimTextHorizontal {
7
+ /** Centers the text between the extension lines */
8
+ Center = 0,
9
+ /** Positions text next to the first extension line */
10
+ Left = 1,
11
+ /** Positions text next to the second extension line */
12
+ Right = 2,
13
+ /** Positions text above and aligned with the first extension line */
14
+ OverFirst = 3,
15
+ /** Positions text above and aligned with the second extension line */
16
+ OverSecond = 4
17
+ }
18
+ /**
19
+ * Controls the vertical positioning of dimension text relative to the dimension line.
20
+ * This setting determines whether text appears above, below, or centered on the dimension line.
21
+ */
22
+ export declare enum AcDbDimTextVertical {
23
+ /** Centers text between the extension lines */
24
+ Center = 0,
25
+ /** Places text above the dimension line */
26
+ Above = 1,
27
+ /** Places text on the side farthest from the defining points */
28
+ Outside = 2,
29
+ /** Places text according to Japanese Industrial Standards (JIS) */
30
+ JIS = 3,
31
+ /** Places text below the dimension line */
32
+ Below = 4
33
+ }
34
+ /**
35
+ * Controls the suppression of zeros in primary unit values for linear dimensions.
36
+ * This setting affects how feet, inches, and decimal values are displayed.
37
+ */
38
+ export declare enum AcDbDimZeroSuppression {
39
+ /** Suppresses zero feet and precisely zero inches */
40
+ Feet = 0,
41
+ /** Includes zero feet and precisely zero inches */
42
+ None = 1,
43
+ /** Includes zero feet and suppresses zero inches */
44
+ Inch = 2,
45
+ /** Includes zero inches and suppresses zero feet */
46
+ FeetAndInch = 3,
47
+ /** Suppresses leading zeros in decimal dimensions */
48
+ Leading = 4,
49
+ /** Suppresses trailing zeros in decimal dimensions */
50
+ Trailing = 8,
51
+ /** Suppresses both leading and trailing zeros */
52
+ LeadingAndTrailing = 12
53
+ }
54
+ /**
55
+ * Controls the suppression of zeros in angular dimension values.
56
+ * This setting affects how angular dimensions are displayed.
57
+ */
58
+ export declare enum AcDbDimZeroSuppressionAngular {
59
+ /** Displays all leading and trailing zeros */
60
+ None = 0,
61
+ /** Suppresses leading zeros in decimal dimensions */
62
+ Leading = 1,
63
+ /** Suppresses trailing zeros in decimal dimensions */
64
+ Trailing = 2,
65
+ /** Suppresses both leading and trailing zeros */
66
+ LeadingAndTrailing = 3
67
+ }
68
+ /**
69
+ * Controls the vertical justification of tolerance values relative to the nominal dimension text.
70
+ * This setting only affects dimensions when tolerance is enabled.
71
+ */
72
+ export declare enum AcDbDimVerticalJustification {
73
+ /** Aligns tolerance text at the bottom */
74
+ Bottom = 0,
75
+ /** Centers tolerance text vertically */
76
+ Middle = 1,
77
+ /** Aligns tolerance text at the top */
78
+ Top = 2
79
+ }
80
+ /**
81
+ * Interface defining the attributes for a dimension style table record.
82
+ * Contains all the properties that control the appearance and behavior of dimensions
83
+ * that reference this style.
84
+ */
85
+ export interface AcDbDimStyleTableRecordAttrs extends AcDbSymbolTableRecordAttrs {
86
+ /** Dimension postfix for text prefix/suffix */
87
+ dimpost: string;
88
+ /** Dimension append postfix for alternate units */
89
+ dimapost: string;
90
+ /** Overall scale factor for dimensions */
91
+ dimscale: number;
92
+ /** Arrow size for dimension lines */
93
+ dimasz: number;
94
+ /** Extension line offset from origin */
95
+ dimexo: number;
96
+ /** Dimension line increment for baseline dimensions */
97
+ dimdli: number;
98
+ /** Extension line extension beyond dimension line */
99
+ dimexe: number;
100
+ /** Rounding value for dimension distances */
101
+ dimrnd: number;
102
+ /** Dimension line extension beyond extension lines */
103
+ dimdle: number;
104
+ /** Plus tolerance value */
105
+ dimtp: number;
106
+ /** Minus tolerance value */
107
+ dimtm: number;
108
+ /** Text height for dimensions */
109
+ dimtxt: number;
110
+ /** Center mark size for circles/arcs */
111
+ dimcen: number;
112
+ /** Tick size (replaces arrows when > 0) */
113
+ dimtsz: number;
114
+ /** Alternate unit scale factor */
115
+ dimaltf: number;
116
+ /** Linear dimension scale factor */
117
+ dimlfac: number;
118
+ /** Text vertical position offset */
119
+ dimtvp: number;
120
+ /** Text height scale factor */
121
+ dimtfac: number;
122
+ /** Gap between dimension line and text */
123
+ dimgap: number;
124
+ /** Alternate unit rounding */
125
+ dimaltrnd: number;
126
+ /** Enable/disable tolerance display */
127
+ dimtol: 0 | 1;
128
+ /** Enable/disable dimension limits */
129
+ dimlim: 0 | 1;
130
+ /** Text horizontal alignment inside extension lines */
131
+ dimtih: 0 | 1;
132
+ /** Text horizontal alignment outside extension lines */
133
+ dimtoh: 0 | 1;
134
+ /** Suppress first extension line */
135
+ dimse1: 0 | 1;
136
+ /** Suppress second extension line */
137
+ dimse2: 0 | 1;
138
+ /** Text vertical position relative to dimension line */
139
+ dimtad: AcDbDimTextVertical;
140
+ /** Zero suppression for primary units */
141
+ dimzin: AcDbDimZeroSuppression;
142
+ /** Zero suppression for angular dimensions */
143
+ dimazin: AcDbDimZeroSuppressionAngular;
144
+ /** Enable/disable alternate units */
145
+ dimalt: 0 | 1;
146
+ /** Decimal places for alternate units */
147
+ dimaltd: number;
148
+ /** Force dimension line between extension lines */
149
+ dimtofl: 0 | 1;
150
+ /** Use separate arrow blocks for each end */
151
+ dimsah: 0 | 1;
152
+ /** Force text inside extension lines */
153
+ dimtix: 0 | 1;
154
+ /** Suppress arrows when text doesn't fit */
155
+ dimsoxd: 0 | 1;
156
+ /** Dimension line color */
157
+ dimclrd: number;
158
+ /** Extension line color */
159
+ dimclre: number;
160
+ /** Dimension text color */
161
+ dimclrt: number;
162
+ /** Angular dimension decimal places */
163
+ dimadec: number;
164
+ /** Linear dimension units format */
165
+ dimunit: number;
166
+ /** Primary unit decimal places */
167
+ dimdec: number;
168
+ /** Tolerance decimal places */
169
+ dimtdec: number;
170
+ /** Alternate unit format */
171
+ dimaltu: number;
172
+ /** Alternate tolerance decimal places */
173
+ dimalttd: number;
174
+ /** Angular dimension units */
175
+ dimaunit: number;
176
+ /** Fraction format for architectural units */
177
+ dimfrac: number;
178
+ /** Linear dimension units */
179
+ dimlunit: number;
180
+ /** Decimal separator character */
181
+ dimdsep: string;
182
+ /** Text movement rules */
183
+ dimtmove: number;
184
+ /** Text horizontal justification */
185
+ dimjust: AcDbDimTextHorizontal;
186
+ /** Suppress first dimension line */
187
+ dimsd1: 0 | 1;
188
+ /** Suppress second dimension line */
189
+ dimsd2: 0 | 1;
190
+ /** Tolerance text vertical justification */
191
+ dimtolj: AcDbDimVerticalJustification;
192
+ /** Tolerance zero suppression */
193
+ dimtzin: AcDbDimZeroSuppression;
194
+ /** Alternate unit zero suppression */
195
+ dimaltz: AcDbDimZeroSuppression;
196
+ /** Alternate tolerance zero suppression */
197
+ dimalttz: AcDbDimZeroSuppression;
198
+ /** Text fitting behavior */
199
+ dimfit: number;
200
+ /** User positioning control */
201
+ dimupt: number;
202
+ /** Angular dimension text/arrow fitting */
203
+ dimatfit: number;
204
+ /** Text style name */
205
+ dimtxsty: string;
206
+ /** Leader arrow block name */
207
+ dimldrblk: string;
208
+ /** Arrow block name */
209
+ dimblk: string;
210
+ /** First arrow block name (when using separate arrows) */
211
+ dimblk1: string;
212
+ /** Second arrow block name (when using separate arrows) */
213
+ dimblk2: string;
214
+ /** Dimension line weight */
215
+ dimlwd: number;
216
+ /** Extension line weight */
217
+ dimlwe: number;
218
+ }
219
+ /**
220
+ * Objects of this class represent the records found in the dimension style table. Each of these
221
+ * records contains the information necessary to generate a specific appearance (that is, text
222
+ * above, in, or below the line; arrows, slashes, or dots at the end of the dimension line, and
223
+ * so on) for dimensions that reference it.
224
+ */
225
+ export declare class AcDbDimStyleTableRecord extends AcDbSymbolTableRecord<AcDbDimStyleTableRecordAttrs> {
226
+ static DEFAULT_DIM_VALUES: AcDbDimStyleTableRecordAttrs;
227
+ constructor(attrs?: Partial<AcDbDimStyleTableRecordAttrs>, defaultAttrs?: Partial<AcDbDimStyleTableRecordAttrs>);
228
+ /**
229
+ * Dimension postfix. This property specifies a text prefix or suffix (or both) to the dimension
230
+ * measurement.
231
+ * For example, to establish a suffix for millimeters, set DIMPOST to mm; a distance of 19.2 units
232
+ * would be displayed as 19.2 mm.
233
+ * If tolerances are turned on, the suffix is applied to the tolerances as well as to the main
234
+ * dimension. Use <> to indicate placement of the text in relation to the dimension value. For
235
+ * example, enter <>mm to display a 5.0 millimeter radial dimension as "5.0mm". If you entered
236
+ * mm <>, the dimension would be displayed as "mm 5.0". Use the <> mechanism for angular
237
+ * dimensions.
238
+ */
239
+ get dimpost(): string;
240
+ set dimpost(value: string);
241
+ /**
242
+ * Dimension append postfix. This property specifies a text prefix or suffix (or both) to the
243
+ * alternate dimension measurement for all types of dimensions except angular.
244
+ * For instance, if the current units are Architectural, DIMALT is on, DIMALTF is 25.4 (the
245
+ * number of millimeters per inch), DIMALTD is 2, and DIMAPOST is set to "mm", a distance of 10
246
+ * units would be displayed as 10"[254.00mm].
247
+ * To turn off an established prefix or suffix (or both), set it to a single period (.).
248
+ */
249
+ get dimapost(): string;
250
+ set dimapost(value: string);
251
+ /**
252
+ * Dimension scale. This property controls the scale factor for dimensioning objects. If you need
253
+ * to adjust the scale of your dimensions, you can change this value to better fit your drawing's
254
+ * scale.
255
+ */
256
+ get dimscale(): number;
257
+ set dimscale(value: number);
258
+ /**
259
+ * Dimension arrow size. This property controls the size of the arrowheads used in dimensions. You
260
+ * can modify this value to adjust the size of arrowheads based on your drawing's requirements.
261
+ */
262
+ get dimasz(): number;
263
+ set dimasz(value: number);
264
+ /**
265
+ * Dimension extension line offset. This property controls the offset distance from the origin point
266
+ * to where the extension line starts. You can adjust it to control how far the extension line is set
267
+ * back from the object being dimensioned.
268
+ */
269
+ get dimexo(): number;
270
+ set dimexo(value: number);
271
+ /**
272
+ * Dimension line Increment. This property controls the spacing between the dimension lines when you
273
+ * create multiple parallel dimensions using the baseline dimensioning method.
274
+ */
275
+ get dimdli(): number;
276
+ set dimdli(value: number);
277
+ /**
278
+ * Dimension extension line extension. This property controls how far beyond the dimension line the
279
+ * extension lines extend. You can adjust this value to control the length of the extension line
280
+ * past the dimension line.
281
+ */
282
+ get dimexe(): number;
283
+ set dimexe(value: number);
284
+ /**
285
+ * Dimension rounding. This property controls the rounding of dimension distances to a specified value.
286
+ * When set to 0.0, no rounding occurs, and the dimension is displayed with its exact value. You can
287
+ * set it to a non-zero value to round dimensions to a specific increment.
288
+ */
289
+ get dimrnd(): number;
290
+ set dimrnd(value: number);
291
+ /**
292
+ * Dimension line extension. This property controls how far the dimension line is extended beyond
293
+ * the extension lines. By default, the dimension line ends at the extension lines, but you can
294
+ * adjust this value to extend the dimension line beyond them.
295
+ */
296
+ get dimdle(): number;
297
+ set dimdle(value: number);
298
+ /**
299
+ * Dimension text post. This property controls the tolerance value added after the dimension text,
300
+ * typically used for specifying tolerance values in dimensions. The default setting of 0.0 means
301
+ * that no additional tolerance is applied by default.
302
+ */
303
+ get dimtp(): number;
304
+ set dimtp(value: number);
305
+ /**
306
+ * Dimension minus tolerance. This property controls the lower tolerance limit for dimensions. When
307
+ * set to 0.0, no minus tolerance is applied by default. You can set this to a different value if
308
+ * you need to specify a negative tolerance for your dimensions.
309
+ */
310
+ get dimtm(): number;
311
+ set dimtm(value: number);
312
+ /**
313
+ * Dimension text height. This property controls the height of the dimension text. You can adjust
314
+ * this value to change the size of the text in your dimensions to fit the scale and appearance of
315
+ * your drawing.
316
+ */
317
+ get dimtxt(): number;
318
+ set dimtxt(value: number);
319
+ /**
320
+ * Dimension center mark size. This property controls the size of the center marks or centerlines
321
+ * for circles and arcs in dimensions. A positive value specifies the size of the center mark,
322
+ * while a negative value specifies the size of the centerline. If set to 0, no center mark or
323
+ * centerline is drawn.
324
+ */
325
+ get dimcen(): number;
326
+ set dimcen(value: number);
327
+ /**
328
+ * Dimension tick size. When set to 0.0, no tick marks are displayed, and the default arrowheads are
329
+ * used for dimension lines. If you set it to a positive value, it will display tick marks instead
330
+ * of arrowheads, with the value controlling the size of the ticks.
331
+ */
332
+ get dimtsz(): number;
333
+ set dimtsz(value: number);
334
+ /**
335
+ * Alternate dimensioning. The default value of DIMALT is set to 0 for DIMALTF (Dimension Alternate
336
+ * Text Format), which means that alternate dimensions are not displayed by default.
337
+ * When DIMALT is set to 1, it indicates that alternate dimensioning is enabled, and you can use
338
+ * DIMALTF to specify the format of the alternate dimension text. You can set it to various values
339
+ * depending on how you want the alternate dimensions to be displayed.
340
+ */
341
+ get dimaltf(): number;
342
+ set dimaltf(value: number);
343
+ /**
344
+ * Dimension linear factor. This property controls the scaling factor for linear dimensions. If you
345
+ * want to adjust the size of linear dimensions without changing the actual dimension text height or
346
+ * other dimension settings, you can modify this value. A setting of 1.0 means that dimensions are
347
+ * displayed at their actual size.
348
+ */
349
+ get dimlfac(): number;
350
+ set dimlfac(value: number);
351
+ /**
352
+ * Dimension text vertical position. This property controls the vertical position of dimension text
353
+ * relative to the dimension line. A value of 0.0 means that the dimension text is placed directly
354
+ * on the dimension line. You can adjust this value to change the vertical offset of the dimension
355
+ * text above or below the dimension line.
356
+ */
357
+ get dimtvp(): number;
358
+ set dimtvp(value: number);
359
+ /**
360
+ * Dimension text factor. This property is used to scale the height of dimension text based on the
361
+ * current DIMTXT value. If you set DIMTFAC to a value greater than 1.0, the dimension text will be
362
+ * larger than the default height specified by DIMTXT. Conversely, setting it to a value less than
363
+ * 1.0 will make the text smaller.
364
+ */
365
+ get dimtfac(): number;
366
+ set dimtfac(value: number);
367
+ /**
368
+ * Dimension gap. This property controls the distance between the dimension line and the extension
369
+ * lines. You can adjust this value to create more space or less space between these elements in
370
+ * your dimensions.
371
+ */
372
+ get dimgap(): number;
373
+ set dimgap(value: number);
374
+ /**
375
+ * Dimension alternate rounding. This property controls rounds off the alternate dimension units.
376
+ */
377
+ get dimaltrnd(): number;
378
+ set dimaltrnd(value: number);
379
+ /**
380
+ * Dimension tolerance. This property determines whether to appends tolerances to dimension text.
381
+ * Setting DIMTOL to on (1) turns DIMLIM off (0).
382
+ */
383
+ get dimtol(): 0 | 1;
384
+ set dimtol(value: 0 | 1);
385
+ /**
386
+ * Dimension limit. This property determines whether to generate dimension limits as the default
387
+ * text. Setting DIMLIM to On turns DIMTOL off.
388
+ * - 0: Dimension limits are not generated as default text
389
+ * - 1: Dimension limits are generated as default text
390
+ */
391
+ get dimlim(): 0 | 1;
392
+ set dimlim(value: 0 | 1);
393
+ /**
394
+ * Dimension text inside horizontal. This property controls the position of dimension text inside the
395
+ * extension lines for all dimension types except Ordinate.
396
+ * - 0: Aligns text with the dimension line
397
+ * - 1: Draws text horizontally
398
+ */
399
+ get dimtih(): 0 | 1;
400
+ set dimtih(value: 0 | 1);
401
+ /**
402
+ * Dimension text outside horizontal. This property controls the position of dimension text
403
+ * outside the extension lines.
404
+ * - 0: Aligns text with the dimension line
405
+ * - 1: Draws text horizontally
406
+ */
407
+ get dimtoh(): 0 | 1;
408
+ set dimtoh(value: 0 | 1);
409
+ /**
410
+ * Dimension suppress extension line 1. This property controls whether to suppresses display of the
411
+ * first extension line.
412
+ * - 0: Extension line is not suppressed
413
+ * - 1: Extension line is suppressed
414
+ */
415
+ get dimse1(): 0 | 1;
416
+ set dimse1(value: 0 | 1);
417
+ /**
418
+ * Dimension suppress extension line 2. This property controls whether to suppresses display of the
419
+ * second extension line.
420
+ * - 0: Extension line is not suppressed
421
+ * - 1: Extension line is suppressed
422
+ */
423
+ get dimse2(): 0 | 1;
424
+ set dimse2(value: 0 | 1);
425
+ /**
426
+ * Dimension text above dimension line. This property the vertical position of text in relation to
427
+ * the dimension line.
428
+ * - 0: Centers the dimension text between the extension lines.
429
+ * - 1: Places the dimension text above the dimension line except when the dimension line is not
430
+ * horizontal and text inside the extension lines is forced horizontal ( DIMTIH = 1). The distance
431
+ * from the dimension line to the baseline of the lowest line of text is the current DIMGAP value.
432
+ * - 2: Places the dimension text on the side of the dimension line farthest away from the defining
433
+ * points.
434
+ * - 3: Places the dimension text to conform to Japanese Industrial Standards (JIS).
435
+ * - 4: Places the dimension text below the dimension line.
436
+ */
437
+ get dimtad(): AcDbDimTextVertical;
438
+ set dimtad(value: AcDbDimTextVertical);
439
+ /**
440
+ * Dimension zero-in. This property controls the suppression of zeros in the primary unit value.
441
+ * - 0: Suppresses zero feet and precisely zero inches
442
+ * - 1: Includes zero feet and precisely zero inches
443
+ * - 2: Includes zero feet and suppresses zero inches
444
+ * - 3: Includes zero inches and suppresses zero feet
445
+ * - 4: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
446
+ * - 8: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
447
+ * - 12: Suppresses both leading and trailing zeros (for example, 0.5000 becomes .5)
448
+ */
449
+ get dimzin(): AcDbDimZeroSuppression;
450
+ set dimzin(value: AcDbDimZeroSuppression);
451
+ /**
452
+ * Dimension zero-in for angular dimensions.
453
+ * - 0: Displays all leading and trailing zeros
454
+ * - 1: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
455
+ * - 2: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
456
+ * - 3: Suppresses leading and trailing zeros (for example, 0.5000 becomes .5)
457
+ */
458
+ get dimazin(): AcDbDimZeroSuppressionAngular;
459
+ set dimazin(value: AcDbDimZeroSuppressionAngular);
460
+ /**
461
+ * Dimension angular zero-in. This property controls the display of alternate units in dimensions.
462
+ * - 0: Disables alternate units
463
+ * - 1: Enables alternate units
464
+ */
465
+ get dimalt(): 0 | 1;
466
+ set dimalt(value: 0 | 1);
467
+ /**
468
+ * Dimension alternate dimension. This property controls the number of decimal places in alternate
469
+ * units. If DIMALT is turned on, DIMALTD sets the number of digits displayed to the right of the
470
+ * decimal point in the alternate measurement.
471
+ */
472
+ get dimaltd(): number;
473
+ set dimaltd(value: number);
474
+ /**
475
+ * Dimension to first extension line. This property controls whether a dimension line is drawn
476
+ * between the extension lines even when the text is placed outside. For radius and diameter
477
+ * dimensions, a dimension line is drawn inside the circle or arc when the text, arrowheads,
478
+ * and leader are placed outside.
479
+ * - 0: Does not draw dimension lines between the measured points when arrowheads are placed
480
+ * outside the measured points
481
+ * - 1: Draws dimension lines between the measured points even when arrowheads are placed
482
+ * outside the measured points
483
+ */
484
+ get dimtofl(): 0 | 1;
485
+ set dimtofl(value: 0 | 1);
486
+ /**
487
+ * Dimension suppress arrowheads. This property controls the display of dimension line arrowhead blocks.
488
+ * - 0: Use arrowhead blocks set by DIMBLK
489
+ * - 1: Use arrowhead blocks set by DIMBLK1 and DIMBLK2
490
+ */
491
+ get dimsah(): 0 | 1;
492
+ set dimsah(value: 0 | 1);
493
+ /**
494
+ * Dimension text inside extension lines. This property controls the position of dimension text
495
+ * relative to the extension lines.
496
+ * - 0: For linear and angular dimensions, dimension text is placed inside the extension lines if
497
+ * there is sufficient room.
498
+ * - 1: Draws dimension text between the extension lines even if it would ordinarily be placed
499
+ * outside those lines. For radius and diameter dimensions, DIMTIX on always forces the dimension
500
+ * text outside the circle or arc.
501
+ */
502
+ get dimtix(): 0 | 1;
503
+ set dimtix(value: 0 | 1);
504
+ /**
505
+ * Dimension suppress offset x-direction. This property controls whether to suppresses arrowheads
506
+ * if not enough space is available inside the extension lines.
507
+ * If not enough space is available inside the extension lines and DIMTIX is on, setting DIMSOXD to
508
+ * On suppresses the arrowheads. If DIMTIX is off, DIMSOXD has no effect.
509
+ * - 0: Arrowheads are not suppressed
510
+ * - 1: Arrowheads are suppressed
511
+ */
512
+ get dimsoxd(): 0 | 1;
513
+ set dimsoxd(value: 0 | 1);
514
+ /**
515
+ * Dimension color. This property controls colors to dimension lines, arrowheads, and dimension leader
516
+ * lines. For BYBLOCK, enter 0. For BYLAYER, enter 256.
517
+ */
518
+ get dimclrd(): number;
519
+ set dimclrd(value: number);
520
+ /**
521
+ * Dimension extension line color. This property controls colors to extension lines, center marks,
522
+ * and centerlines. For BYBLOCK, enter 0. For BYLAYER, enter 256.
523
+ */
524
+ get dimclre(): number;
525
+ set dimclre(value: number);
526
+ /**
527
+ * Dimension text color. This property controls colors to dimension text. For BYBLOCK, enter 0.
528
+ * For BYLAYER, enter 256.
529
+ */
530
+ get dimclrt(): number;
531
+ set dimclrt(value: number);
532
+ /**
533
+ * Dimension angular decimal places. This property controls the number of precision places displayed
534
+ * in angular dimensions.
535
+ * - 1: Angular dimensions display the number of decimal places specified by DIMDEC
536
+ * - 0-8: Specifies the number of decimal places displayed in angular dimensions (independent of DIMDEC)
537
+ */
538
+ get dimadec(): number;
539
+ set dimadec(value: number);
540
+ /**
541
+ * Dimension linear units. This property controls the format in which linear dimensions are displayed.
542
+ * The value of this property include:
543
+ * - 1: Scientific
544
+ * - 2: Decimal
545
+ * - 3: Engineering
546
+ * - 4: Architectural (always displayed stacked)
547
+ * - 5: Fractional (always displayed stacked)
548
+ * - 6: Microsoft Windows Desktop (decimal format using Control Panel settings for decimal separator
549
+ * and number grouping symbols)
550
+ */
551
+ get dimunit(): number;
552
+ set dimunit(value: number);
553
+ /**
554
+ * Dimension decimal places. This property controls the number of decimal places displayed for the
555
+ * primary units of a dimension. Its initial value is 4 for imperial unit or 2 for metric unit.
556
+ * The precision is based on the units or angle format you have selected. Specified value is applied
557
+ * to angular dimensions when DIMADEC is set to -1.
558
+ */
559
+ get dimdec(): number;
560
+ set dimdec(value: number);
561
+ /**
562
+ * Dimension tolerance decimal places. This property controls the number of decimal places to display
563
+ * in tolerance values for the primary units in a dimension. This property has no effect unless DIMTOL
564
+ * is set to On. The default for DIMTOL is Off.
565
+ */
566
+ get dimtdec(): number;
567
+ set dimtdec(value: number);
568
+ /**
569
+ * Dimension alternate unit format. This property controls the units format for alternate units of
570
+ * all dimension substyles except Angular. The value of this property include:
571
+ * - 1: Scientific
572
+ * - 2: Decimal
573
+ * - 3: Engineering
574
+ * - 4: Architectural (stacked)
575
+ * - 5: Fractional (stacked)
576
+ * - 6: Architectural
577
+ * - 7: Fractional
578
+ * - 8: Microsoft Windows Desktop (decimal format using Control Panel settings for decimal separator
579
+ * and number grouping symbols)
580
+ */
581
+ get dimaltu(): number;
582
+ set dimaltu(value: number);
583
+ /**
584
+ * Dimension alternate tolerance decimal places. This property controls the number of decimal places
585
+ * for the tolerance values in the alternate units of a dimension.
586
+ */
587
+ get dimalttd(): number;
588
+ set dimalttd(value: number);
589
+ /**
590
+ * Dimension angular units. This property controls the units format for angular dimensions.
591
+ * - 0: Decimal degrees
592
+ * - 1: Degrees/minutes/seconds
593
+ * - 2: Gradians
594
+ * - 3: Radians
595
+ */
596
+ get dimaunit(): number;
597
+ set dimaunit(value: number);
598
+ /**
599
+ * Dimension fraction format. This property controls the fraction format when DIMLUNIT is set to 4
600
+ * (Architectural) or 5 (Fractional).
601
+ * - 0: Horizontal stacking
602
+ * - 1: Diagonal stacking
603
+ * - 2: Not stacked (for example, 1/2)
604
+ */
605
+ get dimfrac(): number;
606
+ set dimfrac(value: number);
607
+ /**
608
+ * Dimension linear units. This property controls units for all dimension types except angular.
609
+ * The value of this property include:
610
+ * - 1: Scientific
611
+ * - 2: Decimal
612
+ * - 3: Engineering
613
+ * - 4: Architectural (always displayed stacked)
614
+ * - 5: Fractional (always displayed stacked)
615
+ * - 6: Microsoft Windows Desktop (decimal format using Control Panel settings for decimal separator
616
+ * and number grouping symbols)
617
+ */
618
+ get dimlunit(): number;
619
+ set dimlunit(value: number);
620
+ /**
621
+ * Dimension decimal separator. This property is used to specifies a single-character decimal separator
622
+ * to use when creating dimensions whose unit format is decimal.
623
+ */
624
+ get dimdsep(): string;
625
+ set dimdsep(value: string);
626
+ /**
627
+ * Dimension text movement. This property is used to set dimension text movement rules.
628
+ * - 0: Moves the dimension line with dimension text
629
+ * - 1: Adds a leader when dimension text is moved
630
+ * - 2: Allows text to be moved freely without a leader
631
+ */
632
+ get dimtmove(): number;
633
+ set dimtmove(value: number);
634
+ /**
635
+ * Dimension text justification. This property controls the horizontal positioning of dimension text.
636
+ * - 0: Positions the text above the dimension line and center-justifies it between the extension lines
637
+ * - 1: Positions the text next to the first extension line
638
+ * - 2: Positions the text next to the second extension line
639
+ * - 3: Positions the text above and aligned with the first extension line
640
+ * - 4: Positions the text above and aligned with the second extension line
641
+ */
642
+ get dimjust(): number;
643
+ set dimjust(value: number);
644
+ /**
645
+ * Suppress first dimension line. This property controls suppression of the first dimension line
646
+ * and arrowhead. When turned on, suppresses the display of the dimension line and arrowhead
647
+ * between the first extension line and the text.
648
+ * - 0: First dimension line is not suppressed
649
+ * - 1: First dimension line is suppressed
650
+ */
651
+ get dimsd1(): 0 | 1;
652
+ set dimsd1(value: 0 | 1);
653
+ /**
654
+ * Suppress second dimension line. This property controls suppression of the second dimension line
655
+ * and arrowhead. When turned on, suppresses the display of the dimension line and arrowhead
656
+ * between the second extension line and the text.
657
+ * - 0: Second dimension line is not suppressed
658
+ * - 1: Second dimension line is suppressed
659
+ */
660
+ get dimsd2(): 0 | 1;
661
+ set dimsd2(value: 0 | 1);
662
+ /**
663
+ * Dimension tolerance justification. This property sets the vertical justification for tolerance
664
+ * values relative to the nominal dimension text. This property has no effect unless DIMTOL is set
665
+ * to On. The default for DIMTOL is Off.
666
+ * - 0: Bottom
667
+ * - 1: Middle
668
+ * - 2: Top
669
+ */
670
+ get dimtolj(): AcDbDimVerticalJustification;
671
+ set dimtolj(value: AcDbDimVerticalJustification);
672
+ /**
673
+ * Dimension tolerance zero suppress. This property controls the suppression of zeros in tolerance values.
674
+ * Values 0-3 affect feet-and-inch dimensions only.
675
+ * - 0: Suppresses zero feet and precisely zero inches
676
+ * - 1: Includes zero feet and precisely zero inches
677
+ * - 2: Includes zero feet and suppresses zero inches
678
+ * - 3: Includes zero inches and suppresses zero feet
679
+ * - 4: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
680
+ * - 8: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
681
+ * - 12: Suppresses both leading and trailing zeros (for example, 0.5000 becomes .5)
682
+ */
683
+ get dimtzin(): AcDbDimZeroSuppression;
684
+ set dimtzin(value: AcDbDimZeroSuppression);
685
+ /**
686
+ * Dimension alternate unit zero suppress. This property controls the suppression of zeros for
687
+ * alternate unit dimension values. DIMALTZ values 0-3 affect feet-and-inch dimensions only.
688
+ * - 0: Suppresses zero feet and precisely zero inches
689
+ * - 1: Includes zero feet and precisely zero inches
690
+ * - 2: Includes zero feet and suppresses zero inches
691
+ * - 3: Includes zero inches and suppresses zero feet
692
+ * - 4: Suppresses leading zeros in decimal dimensions (for example, 0.5000 becomes .5000)
693
+ * - 8: Suppresses trailing zeros in decimal dimensions (for example, 12.5000 becomes 12.5)
694
+ * - 12: Suppresses both leading and trailing zeros (for example, 0.5000 becomes .5)
695
+ */
696
+ get dimaltz(): AcDbDimZeroSuppression;
697
+ set dimaltz(value: AcDbDimZeroSuppression);
698
+ /**
699
+ * Dimension alternate tolerance zero suppress. This property controls suppression of zeros in
700
+ * tolerance values.
701
+ * - 0: Suppresses zero feet and precisely zero inches
702
+ * - 1: Includes zero feet and precisely zero inches
703
+ * - 2: Includes zero feet and suppresses zero inches
704
+ * - 3: Includes zero inches and suppresses zero feet
705
+ *
706
+ * To suppress leading or trailing zeros, add the following values to one of the preceding values:
707
+ * - 4: Suppresses leading zeros
708
+ * - 8: Suppresses trailing zeros
709
+ */
710
+ get dimalttz(): AcDbDimZeroSuppression;
711
+ set dimalttz(value: AcDbDimZeroSuppression);
712
+ /**
713
+ * Dimension fit. This property controls how dimension text fits within the dimension line.
714
+ * The value of this property include:
715
+ * - 0: Fit (default) – The dimension text is placed outside the dimension lines if it does not fit inside.
716
+ * - 1: Above – The dimension text is placed above the dimension line.
717
+ * - 2: Center – The dimension text is centered between the extension lines.
718
+ * With the default setting of 0, the software automatically positions the dimension text based on
719
+ * available space.
720
+ */
721
+ get dimfit(): number;
722
+ set dimfit(value: number);
723
+ /**
724
+ * Dimension update. This property controls options for user-positioned text.
725
+ * - 0: Cursor controls only the dimension line location
726
+ * - 1: Cursor controls both the text position and the dimension line location
727
+ */
728
+ get dimupt(): number;
729
+ set dimupt(value: number);
730
+ /**
731
+ * Dimension angular tolerance fit. This property determines how dimension text and arrows are
732
+ * arranged when space is not sufficient to place both within the extension lines.
733
+ * - 0: Places both text and arrows outside extension lines
734
+ * - 1: Moves arrows first, then text
735
+ * - 2: Moves text first, then arrows
736
+ * - 3: Moves either text or arrows, whichever fits best
737
+ * A leader is added to moved dimension text when DIMTMOVE is set to 1.
738
+ */
739
+ get dimatfit(): number;
740
+ set dimatfit(value: number);
741
+ /**
742
+ * Dimension text style. This property specifies the text style of the dimension.
743
+ */
744
+ get dimtxsty(): string;
745
+ set dimtxsty(value: string);
746
+ /**
747
+ * Dimension leader block. This property specifies the arrow type for leaders. To return to the
748
+ * default, closed-filled arrowhead display, enter a single period (.). For a list of arrowhead
749
+ * entries, see DIMBLK.
750
+ * Note: Annotative blocks cannot be used as custom arrowheads for dimensions or leaders.
751
+ */
752
+ get dimldrblk(): string;
753
+ set dimldrblk(value: string);
754
+ /**
755
+ * Dimension arrowhead block. This property controls the arrowhead block displayed at the ends of
756
+ * dimension lines.
757
+ */
758
+ get dimblk(): string;
759
+ set dimblk(value: string);
760
+ /**
761
+ * Dimension arrowhead block for the first arrow. This property controls the arrowhead for the
762
+ * first end of the dimension line when DIMSAH is on.
763
+ */
764
+ get dimblk1(): string;
765
+ set dimblk1(value: string);
766
+ /**
767
+ * Dimension arrowhead block for the second arrow. This property controls the arrowhead for the
768
+ * second end of the dimension line when DIMSAH is on.
769
+ */
770
+ get dimblk2(): string;
771
+ set dimblk2(value: string);
772
+ /**
773
+ * Dimension line weight. This property controls lineweight to dimension lines.
774
+ * - -1: Sets the lineweight to "BYLAYER."
775
+ * - -2: Sets the lineweight to "BYBLOCK."
776
+ * - -3: Sets the lineweight to "DEFAULT." "DEFAULT" is controlled by the LWDEFAULT system variable.
777
+ * Other valid values entered in hundredths of millimeters include 0, 5, 9, 13, 15, 18, 20, 25, 30,
778
+ * 35, 40, 50, 53, 60, 70, 80, 90, 100, 106, 120, 140, 158, 200, and 211.
779
+ * All values must be entered in hundredths of millimeters. (Multiply a value by 2540 to convert
780
+ * values from inches to hundredths of millimeters.)
781
+ */
782
+ get dimlwd(): number;
783
+ set dimlwd(value: number);
784
+ /**
785
+ * Dimension line weight for extension lines. This property controls lineweight to extension lines.
786
+ * - -1: Sets the lineweight to "BYLAYER."
787
+ * - -2: Sets the lineweight to "BYBLOCK."
788
+ * - -3: Sets the lineweight to "DEFAULT." "DEFAULT" is controlled by the LWDEFAULT system variable.
789
+ * Other valid values entered in hundredths of millimeters include 0, 5, 9, 13, 15, 18, 20, 25, 30,
790
+ * 35, 40, 50, 53, 60, 70, 80, 90, 100, 106, 120, 140, 158, 200, and 211.
791
+ * All values must be entered in hundredths of millimeters. (Multiply a value by 2540 to convert
792
+ * values from inches to hundredths of millimeters.)
793
+ */
794
+ get dimlwe(): number;
795
+ set dimlwe(value: number);
796
+ }
797
+ //# sourceMappingURL=AcDbDimStyleTableRecord.d.ts.map