@mlightcad/data-model 1.7.6 → 1.7.8

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 (234) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +224 -224
  3. package/dist/data-model.cjs +7 -5
  4. package/dist/data-model.js +24662 -23343
  5. package/lib/base/AcDbDxfFiler.d.ts +62 -0
  6. package/lib/base/AcDbDxfFiler.d.ts.map +1 -0
  7. package/lib/base/AcDbDxfFiler.js +244 -0
  8. package/lib/base/AcDbDxfFiler.js.map +1 -0
  9. package/lib/base/AcDbHostApplicationServices.d.ts +3 -3
  10. package/lib/base/AcDbHostApplicationServices.d.ts.map +1 -1
  11. package/lib/base/AcDbHostApplicationServices.js +12 -3
  12. package/lib/base/AcDbHostApplicationServices.js.map +1 -1
  13. package/lib/base/AcDbObject.d.ts +17 -1
  14. package/lib/base/AcDbObject.d.ts.map +1 -1
  15. package/lib/base/AcDbObject.js +70 -4
  16. package/lib/base/AcDbObject.js.map +1 -1
  17. package/lib/base/index.d.ts +1 -0
  18. package/lib/base/index.d.ts.map +1 -1
  19. package/lib/base/index.js +1 -0
  20. package/lib/base/index.js.map +1 -1
  21. package/lib/converter/AcDbDxfConverter.d.ts.map +1 -1
  22. package/lib/converter/AcDbDxfConverter.js +4 -0
  23. package/lib/converter/AcDbDxfConverter.js.map +1 -1
  24. package/lib/converter/AcDbObjectConverter.d.ts.map +1 -1
  25. package/lib/converter/AcDbObjectConverter.js +98 -9
  26. package/lib/converter/AcDbObjectConverter.js.map +1 -1
  27. package/lib/database/AcDbBlockTableRecord.d.ts +5 -0
  28. package/lib/database/AcDbBlockTableRecord.d.ts.map +1 -1
  29. package/lib/database/AcDbBlockTableRecord.js +36 -2
  30. package/lib/database/AcDbBlockTableRecord.js.map +1 -1
  31. package/lib/database/AcDbDatabase.d.ts +21 -2
  32. package/lib/database/AcDbDatabase.d.ts.map +1 -1
  33. package/lib/database/AcDbDatabase.js +421 -2
  34. package/lib/database/AcDbDatabase.js.map +1 -1
  35. package/lib/database/AcDbDimStyleTableRecord.d.ts +2 -0
  36. package/lib/database/AcDbDimStyleTableRecord.d.ts.map +1 -1
  37. package/lib/database/AcDbDimStyleTableRecord.js +33 -0
  38. package/lib/database/AcDbDimStyleTableRecord.js.map +1 -1
  39. package/lib/database/AcDbLayerTableRecord.d.ts +2 -0
  40. package/lib/database/AcDbLayerTableRecord.d.ts.map +1 -1
  41. package/lib/database/AcDbLayerTableRecord.js +15 -0
  42. package/lib/database/AcDbLayerTableRecord.js.map +1 -1
  43. package/lib/database/AcDbLinetypeTableRecord.d.ts +2 -0
  44. package/lib/database/AcDbLinetypeTableRecord.d.ts.map +1 -1
  45. package/lib/database/AcDbLinetypeTableRecord.js +38 -0
  46. package/lib/database/AcDbLinetypeTableRecord.js.map +1 -1
  47. package/lib/database/AcDbRegAppTableRecord.d.ts +2 -0
  48. package/lib/database/AcDbRegAppTableRecord.d.ts.map +1 -1
  49. package/lib/database/AcDbRegAppTableRecord.js +7 -0
  50. package/lib/database/AcDbRegAppTableRecord.js.map +1 -1
  51. package/lib/database/AcDbSymbolTable.d.ts.map +1 -1
  52. package/lib/database/AcDbSymbolTable.js +1 -0
  53. package/lib/database/AcDbSymbolTable.js.map +1 -1
  54. package/lib/database/AcDbSymbolTableRecord.d.ts +2 -0
  55. package/lib/database/AcDbSymbolTableRecord.d.ts.map +1 -1
  56. package/lib/database/AcDbSymbolTableRecord.js +5 -0
  57. package/lib/database/AcDbSymbolTableRecord.js.map +1 -1
  58. package/lib/database/AcDbTextStyleTableRecord.d.ts +2 -0
  59. package/lib/database/AcDbTextStyleTableRecord.d.ts.map +1 -1
  60. package/lib/database/AcDbTextStyleTableRecord.js +14 -0
  61. package/lib/database/AcDbTextStyleTableRecord.js.map +1 -1
  62. package/lib/database/AcDbViewportTableRecord.d.ts +2 -0
  63. package/lib/database/AcDbViewportTableRecord.d.ts.map +1 -1
  64. package/lib/database/AcDbViewportTableRecord.js +23 -0
  65. package/lib/database/AcDbViewportTableRecord.js.map +1 -1
  66. package/lib/entity/AcDb2dPolyline.d.ts +4 -0
  67. package/lib/entity/AcDb2dPolyline.d.ts.map +1 -1
  68. package/lib/entity/AcDb2dPolyline.js +25 -0
  69. package/lib/entity/AcDb2dPolyline.js.map +1 -1
  70. package/lib/entity/AcDb2dVertex.d.ts +2 -0
  71. package/lib/entity/AcDb2dVertex.d.ts.map +1 -1
  72. package/lib/entity/AcDb2dVertex.js +11 -0
  73. package/lib/entity/AcDb2dVertex.js.map +1 -1
  74. package/lib/entity/AcDb3dPolyline.d.ts +4 -0
  75. package/lib/entity/AcDb3dPolyline.d.ts.map +1 -1
  76. package/lib/entity/AcDb3dPolyline.js +23 -0
  77. package/lib/entity/AcDb3dPolyline.js.map +1 -1
  78. package/lib/entity/AcDb3dVertex.d.ts +2 -0
  79. package/lib/entity/AcDb3dVertex.d.ts.map +1 -1
  80. package/lib/entity/AcDb3dVertex.js +8 -0
  81. package/lib/entity/AcDb3dVertex.js.map +1 -1
  82. package/lib/entity/AcDbArc.d.ts +2 -0
  83. package/lib/entity/AcDbArc.d.ts.map +1 -1
  84. package/lib/entity/AcDbArc.js +10 -0
  85. package/lib/entity/AcDbArc.js.map +1 -1
  86. package/lib/entity/AcDbAttribute.d.ts +2 -0
  87. package/lib/entity/AcDbAttribute.d.ts.map +1 -1
  88. package/lib/entity/AcDbAttribute.js +12 -0
  89. package/lib/entity/AcDbAttribute.js.map +1 -1
  90. package/lib/entity/AcDbAttributeDefinition.d.ts +2 -0
  91. package/lib/entity/AcDbAttributeDefinition.d.ts.map +1 -1
  92. package/lib/entity/AcDbAttributeDefinition.js +10 -0
  93. package/lib/entity/AcDbAttributeDefinition.js.map +1 -1
  94. package/lib/entity/AcDbBlockReference.d.ts +3 -1
  95. package/lib/entity/AcDbBlockReference.d.ts.map +1 -1
  96. package/lib/entity/AcDbBlockReference.js +19 -0
  97. package/lib/entity/AcDbBlockReference.js.map +1 -1
  98. package/lib/entity/AcDbCircle.d.ts +2 -0
  99. package/lib/entity/AcDbCircle.d.ts.map +1 -1
  100. package/lib/entity/AcDbCircle.js +8 -0
  101. package/lib/entity/AcDbCircle.js.map +1 -1
  102. package/lib/entity/AcDbEllipse.d.ts +2 -0
  103. package/lib/entity/AcDbEllipse.d.ts.map +1 -1
  104. package/lib/entity/AcDbEllipse.js +15 -0
  105. package/lib/entity/AcDbEllipse.js.map +1 -1
  106. package/lib/entity/AcDbEntity.d.ts +6 -0
  107. package/lib/entity/AcDbEntity.d.ts.map +1 -1
  108. package/lib/entity/AcDbEntity.js +53 -0
  109. package/lib/entity/AcDbEntity.js.map +1 -1
  110. package/lib/entity/AcDbFace.d.ts +2 -0
  111. package/lib/entity/AcDbFace.d.ts.map +1 -1
  112. package/lib/entity/AcDbFace.js +20 -0
  113. package/lib/entity/AcDbFace.js.map +1 -1
  114. package/lib/entity/AcDbHatch.d.ts +2 -0
  115. package/lib/entity/AcDbHatch.d.ts.map +1 -1
  116. package/lib/entity/AcDbHatch.js +144 -1
  117. package/lib/entity/AcDbHatch.js.map +1 -1
  118. package/lib/entity/AcDbLeader.d.ts +3 -0
  119. package/lib/entity/AcDbLeader.d.ts.map +1 -1
  120. package/lib/entity/AcDbLeader.js +43 -0
  121. package/lib/entity/AcDbLeader.js.map +1 -1
  122. package/lib/entity/AcDbLine.d.ts +2 -0
  123. package/lib/entity/AcDbLine.d.ts.map +1 -1
  124. package/lib/entity/AcDbLine.js +7 -0
  125. package/lib/entity/AcDbLine.js.map +1 -1
  126. package/lib/entity/AcDbMText.d.ts +2 -0
  127. package/lib/entity/AcDbMText.d.ts.map +1 -1
  128. package/lib/entity/AcDbMText.js +22 -0
  129. package/lib/entity/AcDbMText.js.map +1 -1
  130. package/lib/entity/AcDbPoint.d.ts +2 -0
  131. package/lib/entity/AcDbPoint.d.ts.map +1 -1
  132. package/lib/entity/AcDbPoint.js +6 -0
  133. package/lib/entity/AcDbPoint.js.map +1 -1
  134. package/lib/entity/AcDbPolyline.d.ts +2 -0
  135. package/lib/entity/AcDbPolyline.d.ts.map +1 -1
  136. package/lib/entity/AcDbPolyline.js +11 -0
  137. package/lib/entity/AcDbPolyline.js.map +1 -1
  138. package/lib/entity/AcDbRasterImage.d.ts +2 -1
  139. package/lib/entity/AcDbRasterImage.d.ts.map +1 -1
  140. package/lib/entity/AcDbRasterImage.js +44 -0
  141. package/lib/entity/AcDbRasterImage.js.map +1 -1
  142. package/lib/entity/AcDbRay.d.ts +2 -0
  143. package/lib/entity/AcDbRay.d.ts.map +1 -1
  144. package/lib/entity/AcDbRay.js +7 -0
  145. package/lib/entity/AcDbRay.js.map +1 -1
  146. package/lib/entity/AcDbSpline.d.ts +2 -0
  147. package/lib/entity/AcDbSpline.d.ts.map +1 -1
  148. package/lib/entity/AcDbSpline.js +76 -0
  149. package/lib/entity/AcDbSpline.js.map +1 -1
  150. package/lib/entity/AcDbTable.d.ts +2 -0
  151. package/lib/entity/AcDbTable.d.ts.map +1 -1
  152. package/lib/entity/AcDbTable.js +14 -0
  153. package/lib/entity/AcDbTable.js.map +1 -1
  154. package/lib/entity/AcDbText.d.ts +2 -0
  155. package/lib/entity/AcDbText.d.ts.map +1 -1
  156. package/lib/entity/AcDbText.js +16 -0
  157. package/lib/entity/AcDbText.js.map +1 -1
  158. package/lib/entity/AcDbTrace.d.ts +2 -0
  159. package/lib/entity/AcDbTrace.d.ts.map +1 -1
  160. package/lib/entity/AcDbTrace.js +11 -0
  161. package/lib/entity/AcDbTrace.js.map +1 -1
  162. package/lib/entity/AcDbViewport.d.ts +2 -0
  163. package/lib/entity/AcDbViewport.d.ts.map +1 -1
  164. package/lib/entity/AcDbViewport.js +11 -0
  165. package/lib/entity/AcDbViewport.js.map +1 -1
  166. package/lib/entity/AcDbWipeout.d.ts +2 -0
  167. package/lib/entity/AcDbWipeout.d.ts.map +1 -1
  168. package/lib/entity/AcDbWipeout.js +5 -0
  169. package/lib/entity/AcDbWipeout.js.map +1 -1
  170. package/lib/entity/AcDbXline.d.ts +2 -0
  171. package/lib/entity/AcDbXline.d.ts.map +1 -1
  172. package/lib/entity/AcDbXline.js +7 -0
  173. package/lib/entity/AcDbXline.js.map +1 -1
  174. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts +2 -0
  175. package/lib/entity/dimension/AcDb3PointAngularDimension.d.ts.map +1 -1
  176. package/lib/entity/dimension/AcDb3PointAngularDimension.js +9 -0
  177. package/lib/entity/dimension/AcDb3PointAngularDimension.js.map +1 -1
  178. package/lib/entity/dimension/AcDbAlignedDimension.d.ts +2 -0
  179. package/lib/entity/dimension/AcDbAlignedDimension.d.ts.map +1 -1
  180. package/lib/entity/dimension/AcDbAlignedDimension.js +10 -0
  181. package/lib/entity/dimension/AcDbAlignedDimension.js.map +1 -1
  182. package/lib/entity/dimension/AcDbArcDimension.d.ts +2 -0
  183. package/lib/entity/dimension/AcDbArcDimension.d.ts.map +1 -1
  184. package/lib/entity/dimension/AcDbArcDimension.js +9 -0
  185. package/lib/entity/dimension/AcDbArcDimension.js.map +1 -1
  186. package/lib/entity/dimension/AcDbDiametricDimension.d.ts +2 -0
  187. package/lib/entity/dimension/AcDbDiametricDimension.d.ts.map +1 -1
  188. package/lib/entity/dimension/AcDbDiametricDimension.js +10 -0
  189. package/lib/entity/dimension/AcDbDiametricDimension.js.map +1 -1
  190. package/lib/entity/dimension/AcDbDimension.d.ts +2 -0
  191. package/lib/entity/dimension/AcDbDimension.d.ts.map +1 -1
  192. package/lib/entity/dimension/AcDbDimension.js +17 -0
  193. package/lib/entity/dimension/AcDbDimension.js.map +1 -1
  194. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts +2 -0
  195. package/lib/entity/dimension/AcDbOrdinateDimension.d.ts.map +1 -1
  196. package/lib/entity/dimension/AcDbOrdinateDimension.js +7 -0
  197. package/lib/entity/dimension/AcDbOrdinateDimension.js.map +1 -1
  198. package/lib/entity/dimension/AcDbRadialDimension.d.ts +2 -0
  199. package/lib/entity/dimension/AcDbRadialDimension.d.ts.map +1 -1
  200. package/lib/entity/dimension/AcDbRadialDimension.js +10 -0
  201. package/lib/entity/dimension/AcDbRadialDimension.js.map +1 -1
  202. package/lib/misc/AcDbRenderingCache.d.ts.map +1 -1
  203. package/lib/misc/AcDbRenderingCache.js.map +1 -1
  204. package/lib/object/AcDbDictionary.d.ts +9 -3
  205. package/lib/object/AcDbDictionary.d.ts.map +1 -1
  206. package/lib/object/AcDbDictionary.js +57 -2
  207. package/lib/object/AcDbDictionary.js.map +1 -1
  208. package/lib/object/AcDbRasterImageDef.d.ts +3 -1
  209. package/lib/object/AcDbRasterImageDef.d.ts.map +1 -1
  210. package/lib/object/AcDbRasterImageDef.js +9 -1
  211. package/lib/object/AcDbRasterImageDef.js.map +1 -1
  212. package/lib/object/AcDbXrecord.d.ts +4 -2
  213. package/lib/object/AcDbXrecord.d.ts.map +1 -1
  214. package/lib/object/AcDbXrecord.js +8 -1
  215. package/lib/object/AcDbXrecord.js.map +1 -1
  216. package/lib/object/layout/AcDbLayout.d.ts +4 -2
  217. package/lib/object/layout/AcDbLayout.d.ts.map +1 -1
  218. package/lib/object/layout/AcDbLayout.js +15 -2
  219. package/lib/object/layout/AcDbLayout.js.map +1 -1
  220. package/lib/object/layout/AcDbLayoutDictionary.d.ts +1 -1
  221. package/lib/object/layout/AcDbLayoutDictionary.d.ts.map +1 -1
  222. package/lib/object/layout/AcDbLayoutManager.d.ts +3 -2
  223. package/lib/object/layout/AcDbLayoutManager.d.ts.map +1 -1
  224. package/lib/object/layout/AcDbLayoutManager.js +3 -2
  225. package/lib/object/layout/AcDbLayoutManager.js.map +1 -1
  226. package/lib/object/layout/AcDbPlotSettings.d.ts +600 -0
  227. package/lib/object/layout/AcDbPlotSettings.d.ts.map +1 -0
  228. package/lib/object/layout/AcDbPlotSettings.js +957 -0
  229. package/lib/object/layout/AcDbPlotSettings.js.map +1 -0
  230. package/lib/object/layout/index.d.ts +1 -0
  231. package/lib/object/layout/index.d.ts.map +1 -1
  232. package/lib/object/layout/index.js +1 -0
  233. package/lib/object/layout/index.js.map +1 -1
  234. package/package.json +4 -4
@@ -0,0 +1,600 @@
1
+ import { AcGeBox2d, AcGePoint2d } from '@mlightcad/geometry-engine';
2
+ import { AcDbDxfFiler } from '../../base/AcDbDxfFiler';
3
+ import { AcDbObject, AcDbObjectId } from '../../base/AcDbObject';
4
+ /**
5
+ * Paper margins for plot settings.
6
+ *
7
+ * Values are expressed in millimeters, matching ObjectARX semantics.
8
+ */
9
+ export interface AcDbPlotPaperMargins {
10
+ /** Unprintable margin on the left side of the paper (mm). */
11
+ left: number;
12
+ /** Unprintable margin on the right side of the paper (mm). */
13
+ right: number;
14
+ /** Unprintable margin on the top side of the paper (mm). */
15
+ top: number;
16
+ /** Unprintable margin on the bottom side of the paper (mm). */
17
+ bottom: number;
18
+ }
19
+ /**
20
+ * Plot scale represented as a ratio of paper units to drawing units.
21
+ *
22
+ * The numerator represents paperspace units, and the denominator represents
23
+ * the physical media units (paper units).
24
+ */
25
+ export interface AcDbPlotScale {
26
+ /** Paperspace units (numerator). */
27
+ numerator: number;
28
+ /** Media units (denominator). */
29
+ denominator: number;
30
+ }
31
+ /**
32
+ * Enumeration of plot paper units used by the plot settings.
33
+ */
34
+ export declare enum AcDbPlotPaperUnits {
35
+ /** Paper units are inches. */
36
+ kInches = 0,
37
+ /** Paper units are millimeters. */
38
+ kMillimeters = 1,
39
+ /** Paper units are pixels (device units). */
40
+ kPixels = 2
41
+ }
42
+ /**
43
+ * Enumeration of plot rotations.
44
+ */
45
+ export declare enum AcDbPlotRotation {
46
+ /** 0 degrees rotation. */
47
+ k0degrees = 0,
48
+ /** 90 degrees rotation. */
49
+ k90degrees = 1,
50
+ /** 180 degrees rotation. */
51
+ k180degrees = 2,
52
+ /** 270 degrees rotation. */
53
+ k270degrees = 3
54
+ }
55
+ /**
56
+ * Enumeration of plot types that define which area to plot.
57
+ */
58
+ export declare enum AcDbPlotType {
59
+ /** Plot the current display. */
60
+ kDisplay = 0,
61
+ /** Plot the drawing extents. */
62
+ kExtents = 1,
63
+ /** Plot the drawing limits. */
64
+ kLimits = 2,
65
+ /** Plot a named view. */
66
+ kView = 3,
67
+ /** Plot a window area. */
68
+ kWindow = 4,
69
+ /** Plot the entire layout. */
70
+ kLayout = 5
71
+ }
72
+ /**
73
+ * Enumeration of shade plot resolution levels.
74
+ */
75
+ export declare enum AcDbPlotShadePlotResLevel {
76
+ /** Draft resolution (legacy wireframe behavior). */
77
+ kDraft = 0,
78
+ /** Preview resolution. */
79
+ kPreview = 1,
80
+ /** Normal resolution. */
81
+ kNormal = 2,
82
+ /** Presentation resolution. */
83
+ kPresentation = 3,
84
+ /** Maximum resolution. */
85
+ kMaximum = 4,
86
+ /** Custom resolution using shade plot custom DPI. */
87
+ kCustom = 5
88
+ }
89
+ /**
90
+ * Enumeration of shade plot types that control how viewports plot.
91
+ */
92
+ export declare enum AcDbPlotShadePlotType {
93
+ /** Plot the same way it is displayed. */
94
+ kAsDisplayed = 0,
95
+ /** Plot wireframe regardless of display. */
96
+ kWireframe = 1,
97
+ /** Plot hidden regardless of display. */
98
+ kHidden = 2,
99
+ /** Plot rendered regardless of display. */
100
+ kRendered = 3,
101
+ /** Plot using the referenced visual style. */
102
+ kVisualStyle = 4,
103
+ /** Plot using the referenced render preset. */
104
+ kRenderPreset = 5
105
+ }
106
+ /**
107
+ * Enumeration of standard plot scales.
108
+ */
109
+ export declare enum AcDbPlotStdScaleType {
110
+ /** Scale to fit the printable area. */
111
+ kScaleToFit = 0,
112
+ /** 1/128" = 1'-0" */
113
+ k1_128in_1ft = 1,
114
+ /** 1/64" = 1'-0" */
115
+ k1_64in_1ft = 2,
116
+ /** 1/32" = 1'-0" */
117
+ k1_32in_1ft = 3,
118
+ /** 1/16" = 1'-0" */
119
+ k1_16in_1ft = 4,
120
+ /** 3/32" = 1'-0" */
121
+ k3_32in_1ft = 5,
122
+ /** 1/8" = 1'-0" */
123
+ k1_8in_1ft = 6,
124
+ /** 3/16" = 1'-0" */
125
+ k3_16in_1ft = 7,
126
+ /** 1/4" = 1'-0" */
127
+ k1_4in_1ft = 8,
128
+ /** 3/8" = 1'-0" */
129
+ k3_8in_1ft = 9,
130
+ /** 1/2" = 1'-0" */
131
+ k1_2in_1ft = 10,
132
+ /** 3/4" = 1'-0" */
133
+ k3_4in_1ft = 11,
134
+ /** 1" = 1'-0" */
135
+ k1in_1ft = 12,
136
+ /** 3" = 1'-0" */
137
+ k3in_1ft = 13,
138
+ /** 6" = 1'-0" */
139
+ k6in_1ft = 14,
140
+ /** 1'-0" = 1'-0" */
141
+ k1ft_1ft = 15,
142
+ /** 1:1 */
143
+ k1_1 = 16,
144
+ /** 1:2 */
145
+ k1_2 = 17,
146
+ /** 1:4 */
147
+ k1_4 = 18,
148
+ /** 1:5 */
149
+ k1_5 = 19,
150
+ /** 1:8 */
151
+ k1_8 = 20,
152
+ /** 1:10 */
153
+ k1_10 = 21,
154
+ /** 1:16 */
155
+ k1_16 = 22,
156
+ /** 1:20 */
157
+ k1_20 = 23,
158
+ /** 1:30 */
159
+ k1_30 = 24,
160
+ /** 1:40 */
161
+ k1_40 = 25,
162
+ /** 1:50 */
163
+ k1_50 = 26,
164
+ /** 1:100 */
165
+ k1_100 = 27,
166
+ /** 2:1 */
167
+ k2_1 = 28,
168
+ /** 4:1 */
169
+ k4_1 = 29,
170
+ /** 8:1 */
171
+ k8_1 = 30,
172
+ /** 10:1 */
173
+ k10_1 = 31,
174
+ /** 100:1 */
175
+ k100_1 = 32,
176
+ /** 1000:1 */
177
+ k1000_1 = 33,
178
+ /** 1 1/2" = 1'-0" */
179
+ k1and1_2in_1ft = 34
180
+ }
181
+ /**
182
+ * Represents plot settings for a layout or named plot setup.
183
+ *
184
+ * This class mirrors the core responsibilities of ObjectARX `AcDbPlotSettings`,
185
+ * encapsulating plot configuration, media selection, scale, and view settings.
186
+ */
187
+ export declare class AcDbPlotSettings extends AcDbObject {
188
+ /** Name of the plot settings (page setup name). */
189
+ private _plotSettingsName;
190
+ /** PC3 plot configuration name. */
191
+ private _plotCfgName;
192
+ /** Locale-independent canonical media name. */
193
+ private _canonicalMediaName;
194
+ /** Plot style table name (CTB/STB). */
195
+ private _currentStyleSheet;
196
+ /** Plot origin (paper offset) in paper units. */
197
+ private _plotOrigin;
198
+ /** Custom print scale as a ratio of paperspace to media units. */
199
+ private _customPrintScale;
200
+ /** Physical paper size in millimeters (width, height). */
201
+ private _plotPaperSize;
202
+ /** Unprintable paper margins in millimeters. */
203
+ private _plotPaperMargins;
204
+ /** Named view used when plot type is set to view. */
205
+ private _plotViewName;
206
+ /** Plot window area used when plot type is set to window. */
207
+ private _plotWindowArea;
208
+ /** Whether this plot settings object is for model space. */
209
+ private _modelType;
210
+ /** Whether the plot should be centered on the paper. */
211
+ private _plotCentered;
212
+ /** Whether hidden line removal is enabled for paperspace objects. */
213
+ private _plotHidden;
214
+ /** Units used for plot paper. */
215
+ private _plotPaperUnits;
216
+ /** Whether plot styles are applied during plotting. */
217
+ private _plotPlotStyles;
218
+ /** Rotation applied to the plot on the paper. */
219
+ private _plotRotation;
220
+ /** Which portion of the layout to plot. */
221
+ private _plotType;
222
+ /** Whether viewport borders are plotted. */
223
+ private _plotViewportBorders;
224
+ /** Whether lineweights are printed. */
225
+ private _printLineweights;
226
+ /** Whether lineweights are scaled with plot scale. */
227
+ private _scaleLineweights;
228
+ /** Whether paperspace objects are plotted after viewports. */
229
+ private _drawViewportsFirst;
230
+ /** Whether plot styles are shown in layout display. */
231
+ private _showPlotStyles;
232
+ /** Shade plot type for viewports. */
233
+ private _shadePlotType;
234
+ /** Shade plot resolution level. */
235
+ private _shadePlotResLevel;
236
+ /** Shade plot custom DPI value (used with kCustom resolution). */
237
+ private _shadePlotCustomDpi;
238
+ /** Object ID for visual style or render preset referenced by shade plot. */
239
+ private _shadePlotId?;
240
+ /** Standard scale selection. */
241
+ private _stdScaleType;
242
+ /** Whether standard scale is used to compute the current plot scale. */
243
+ private _useStandardScale;
244
+ /**
245
+ * Creates a new AcDbPlotSettings instance.
246
+ *
247
+ * @param modelType - True for model space plot settings; false for layout.
248
+ *
249
+ * @example
250
+ * ```typescript
251
+ * const plotSettings = new AcDbPlotSettings(false);
252
+ * plotSettings.plotCfgName = 'DWG To PDF.pc3';
253
+ * plotSettings.canonicalMediaName = 'ISO_A4_(210.00_x_297.00_MM)';
254
+ * ```
255
+ */
256
+ constructor(modelType?: boolean);
257
+ /**
258
+ * Gets the plot settings name (page setup name).
259
+ */
260
+ get plotSettingsName(): string;
261
+ /**
262
+ * Sets the plot settings name (page setup name).
263
+ */
264
+ set plotSettingsName(value: string);
265
+ /**
266
+ * ObjectARX-style getter for the plot settings name.
267
+ */
268
+ getPlotSettingsName(): string;
269
+ /**
270
+ * ObjectARX-style setter for the plot settings name.
271
+ */
272
+ setPlotSettingsName(value: string): void;
273
+ /**
274
+ * Gets the plot configuration (PC3) name.
275
+ */
276
+ get plotCfgName(): string;
277
+ /**
278
+ * Sets the plot configuration (PC3) name.
279
+ */
280
+ set plotCfgName(value: string);
281
+ /**
282
+ * ObjectARX-style getter for the plot configuration name.
283
+ */
284
+ getPlotCfgName(): string;
285
+ /**
286
+ * Gets the canonical media name (locale-independent paper name).
287
+ */
288
+ get canonicalMediaName(): string;
289
+ /**
290
+ * Sets the canonical media name (locale-independent paper name).
291
+ */
292
+ set canonicalMediaName(value: string);
293
+ /**
294
+ * ObjectARX-style getter for the canonical media name.
295
+ */
296
+ getCanonicalMediaName(): string;
297
+ /**
298
+ * Gets the plot style table name (CTB/STB).
299
+ */
300
+ get currentStyleSheet(): string;
301
+ /**
302
+ * Sets the plot style table name (CTB/STB).
303
+ */
304
+ set currentStyleSheet(value: string);
305
+ /**
306
+ * ObjectARX-style getter for the current style sheet.
307
+ */
308
+ getCurrentStyleSheet(): string;
309
+ /**
310
+ * Gets the plot origin (paper offset).
311
+ */
312
+ get plotOrigin(): AcGePoint2d;
313
+ /**
314
+ * Sets the plot origin (paper offset).
315
+ */
316
+ set plotOrigin(value: AcGePoint2d);
317
+ /**
318
+ * ObjectARX-style getter for the plot origin.
319
+ */
320
+ getPlotOrigin(): AcGePoint2d;
321
+ /**
322
+ * Gets the custom print scale ratio.
323
+ */
324
+ get customPrintScale(): AcDbPlotScale;
325
+ /**
326
+ * Sets the custom print scale ratio.
327
+ */
328
+ set customPrintScale(value: AcDbPlotScale);
329
+ /**
330
+ * ObjectARX-style getter for the custom print scale.
331
+ */
332
+ getCustomPrintScale(): AcDbPlotScale;
333
+ /**
334
+ * Gets the plot paper size (physical size in millimeters).
335
+ */
336
+ get plotPaperSize(): AcGePoint2d;
337
+ /**
338
+ * Sets the plot paper size (physical size in millimeters).
339
+ */
340
+ set plotPaperSize(value: AcGePoint2d);
341
+ /**
342
+ * ObjectARX-style getter for the plot paper size.
343
+ */
344
+ getPlotPaperSize(): AcGePoint2d;
345
+ /**
346
+ * Gets the plot paper margins (unprintable area in millimeters).
347
+ */
348
+ get plotPaperMargins(): AcDbPlotPaperMargins;
349
+ /**
350
+ * Sets the plot paper margins (unprintable area in millimeters).
351
+ */
352
+ set plotPaperMargins(value: AcDbPlotPaperMargins);
353
+ /**
354
+ * ObjectARX-style getter for the plot paper margins.
355
+ */
356
+ getPlotPaperMargins(): AcDbPlotPaperMargins;
357
+ /**
358
+ * Gets the plot view name used when plot type is kView.
359
+ */
360
+ get plotViewName(): string;
361
+ /**
362
+ * Sets the plot view name used when plot type is kView.
363
+ */
364
+ set plotViewName(value: string);
365
+ /**
366
+ * ObjectARX-style getter for the plot view name.
367
+ */
368
+ getPlotViewName(): string;
369
+ /**
370
+ * Gets the plot window area used when plot type is kWindow.
371
+ */
372
+ get plotWindowArea(): AcGeBox2d;
373
+ /**
374
+ * Sets the plot window area used when plot type is kWindow.
375
+ */
376
+ set plotWindowArea(value: AcGeBox2d);
377
+ /**
378
+ * ObjectARX-style getter for the plot window area.
379
+ */
380
+ getPlotWindowArea(): AcGeBox2d;
381
+ /**
382
+ * Gets whether this plot settings object is for model space.
383
+ */
384
+ get modelType(): boolean;
385
+ /**
386
+ * Sets whether this plot settings object is for model space.
387
+ */
388
+ set modelType(value: boolean);
389
+ /**
390
+ * ObjectARX-style getter for model type.
391
+ */
392
+ getModelType(): boolean;
393
+ /**
394
+ * ObjectARX-style setter for model type.
395
+ */
396
+ setModelType(value: boolean): void;
397
+ /**
398
+ * Gets whether viewports are plotted after paperspace objects.
399
+ */
400
+ get drawViewportsFirst(): boolean;
401
+ /**
402
+ * Sets whether viewports are plotted after paperspace objects.
403
+ */
404
+ set drawViewportsFirst(value: boolean);
405
+ /**
406
+ * ObjectARX-style setter for drawing viewports first.
407
+ */
408
+ setDrawViewportsFirst(value: boolean): void;
409
+ /**
410
+ * Gets whether the plot is centered on the paper.
411
+ */
412
+ get plotCentered(): boolean;
413
+ /**
414
+ * Sets whether the plot is centered on the paper.
415
+ */
416
+ set plotCentered(value: boolean);
417
+ /**
418
+ * ObjectARX-style setter for plot centered.
419
+ */
420
+ setPlotCentered(value: boolean): void;
421
+ /**
422
+ * Gets whether hidden line removal is applied to paperspace objects.
423
+ */
424
+ get plotHidden(): boolean;
425
+ /**
426
+ * Sets whether hidden line removal is applied to paperspace objects.
427
+ */
428
+ set plotHidden(value: boolean);
429
+ /**
430
+ * ObjectARX-style setter for plot hidden.
431
+ */
432
+ setPlotHidden(value: boolean): void;
433
+ /**
434
+ * Gets the plot paper units.
435
+ */
436
+ get plotPaperUnits(): AcDbPlotPaperUnits;
437
+ /**
438
+ * Sets the plot paper units.
439
+ */
440
+ set plotPaperUnits(value: AcDbPlotPaperUnits);
441
+ /**
442
+ * Gets whether plot styles are applied during plotting.
443
+ */
444
+ get plotPlotStyles(): boolean;
445
+ /**
446
+ * Sets whether plot styles are applied during plotting.
447
+ */
448
+ set plotPlotStyles(value: boolean);
449
+ /**
450
+ * ObjectARX-style setter for plot plot styles.
451
+ */
452
+ setPlotPlotStyles(value: boolean): void;
453
+ /**
454
+ * Gets the plot rotation.
455
+ */
456
+ get plotRotation(): AcDbPlotRotation;
457
+ /**
458
+ * Sets the plot rotation.
459
+ */
460
+ set plotRotation(value: AcDbPlotRotation);
461
+ /**
462
+ * Gets the plot type (display, extents, view, etc.).
463
+ */
464
+ get plotType(): AcDbPlotType;
465
+ /**
466
+ * Sets the plot type (display, extents, view, etc.).
467
+ */
468
+ set plotType(value: AcDbPlotType);
469
+ /**
470
+ * Gets whether viewport borders are plotted.
471
+ */
472
+ get plotViewportBorders(): boolean;
473
+ /**
474
+ * Sets whether viewport borders are plotted.
475
+ */
476
+ set plotViewportBorders(value: boolean);
477
+ /**
478
+ * ObjectARX-style setter for plot viewport borders.
479
+ */
480
+ setPlotViewportBorders(value: boolean): void;
481
+ /**
482
+ * Gets whether lineweights are printed.
483
+ */
484
+ get printLineweights(): boolean;
485
+ /**
486
+ * Sets whether lineweights are printed.
487
+ */
488
+ set printLineweights(value: boolean);
489
+ /**
490
+ * ObjectARX-style setter for print lineweights.
491
+ */
492
+ setPrintLineweights(value: boolean): void;
493
+ /**
494
+ * Gets whether lineweights are scaled by the plot scale.
495
+ */
496
+ get scaleLineweights(): boolean;
497
+ /**
498
+ * Sets whether lineweights are scaled by the plot scale.
499
+ */
500
+ set scaleLineweights(value: boolean);
501
+ /**
502
+ * ObjectARX-style setter for scale lineweights.
503
+ */
504
+ setScaleLineweights(value: boolean): void;
505
+ /**
506
+ * Gets whether plot styles are shown in layout mode.
507
+ */
508
+ get showPlotStyles(): boolean;
509
+ /**
510
+ * Sets whether plot styles are shown in layout mode.
511
+ */
512
+ set showPlotStyles(value: boolean);
513
+ /**
514
+ * ObjectARX-style setter for show plot styles.
515
+ */
516
+ setShowPlotStyles(value: boolean): void;
517
+ /**
518
+ * Gets the shade plot type for viewports.
519
+ */
520
+ get shadePlot(): AcDbPlotShadePlotType;
521
+ /**
522
+ * Sets the shade plot type for viewports.
523
+ */
524
+ set shadePlot(value: AcDbPlotShadePlotType);
525
+ /**
526
+ * ObjectARX-style setter for shade plot type.
527
+ */
528
+ setShadePlot(value: AcDbPlotShadePlotType): void;
529
+ /**
530
+ * Gets the shade plot resolution level.
531
+ */
532
+ get shadePlotResLevel(): AcDbPlotShadePlotResLevel;
533
+ /**
534
+ * Sets the shade plot resolution level.
535
+ */
536
+ set shadePlotResLevel(value: AcDbPlotShadePlotResLevel);
537
+ /**
538
+ * ObjectARX-style setter for shade plot resolution level.
539
+ */
540
+ setShadePlotResLevel(value: AcDbPlotShadePlotResLevel): void;
541
+ /**
542
+ * Gets the shade plot custom DPI (used with kCustom).
543
+ */
544
+ get shadePlotCustomDPI(): number;
545
+ /**
546
+ * Sets the shade plot custom DPI (used with kCustom).
547
+ */
548
+ set shadePlotCustomDPI(value: number);
549
+ /**
550
+ * ObjectARX-style setter for shade plot custom DPI.
551
+ */
552
+ setShadePlotCustomDPI(value: number): void;
553
+ /**
554
+ * Gets the shade plot ID (visual style or render preset object ID).
555
+ */
556
+ get shadePlotId(): AcDbObjectId | undefined;
557
+ /**
558
+ * Sets the shade plot ID (visual style or render preset object ID).
559
+ */
560
+ set shadePlotId(value: AcDbObjectId | undefined);
561
+ /**
562
+ * Gets whether viewports plot as wireframe based on shade plot settings.
563
+ */
564
+ get plotWireframe(): boolean;
565
+ /**
566
+ * Gets whether viewports plot as raster based on shade plot settings.
567
+ */
568
+ get plotAsRaster(): boolean;
569
+ /**
570
+ * Gets the standard scale selection.
571
+ */
572
+ get stdScaleType(): AcDbPlotStdScaleType;
573
+ /**
574
+ * Sets the standard scale selection.
575
+ */
576
+ set stdScaleType(value: AcDbPlotStdScaleType);
577
+ /**
578
+ * ObjectARX-style getter for the standard scale as a numeric ratio.
579
+ */
580
+ get stdScale(): number;
581
+ /**
582
+ * Gets whether the standard scale is used to compute the plot scale.
583
+ */
584
+ get useStandardScale(): boolean;
585
+ /**
586
+ * Sets whether the standard scale is used to compute the plot scale.
587
+ */
588
+ set useStandardScale(value: boolean);
589
+ /**
590
+ * Writes the plot settings DXF payload.
591
+ *
592
+ * This follows the PLOTSETTINGS group code specification and emits the
593
+ * plot configuration, media, scale, and flag data for this settings object.
594
+ *
595
+ * @param filer - DXF filer that receives the group codes
596
+ * @returns This plot settings instance for chaining
597
+ */
598
+ dxfOutFields(filer: AcDbDxfFiler): this;
599
+ }
600
+ //# sourceMappingURL=AcDbPlotSettings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AcDbPlotSettings.d.ts","sourceRoot":"","sources":["../../../src/object/layout/AcDbPlotSettings.ts"],"names":[],"mappings":"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"}