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