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