mxdraw 0.1.181 → 0.1.183

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/mxdraw.d.ts CHANGED
@@ -1574,7 +1574,7 @@ declare class MxFunClass {
1574
1574
  * Mx.MxFun.acutPrintf("{0}:", "draw")
1575
1575
  * ```
1576
1576
  */
1577
- acutPrintf: ((sval: string, ...val: string[]) => void) | undefined;
1577
+ acutPrintf: ((format: string, ...val: string[]) => void);
1578
1578
  /**
1579
1579
  * 得到地址栏参数
1580
1580
  * @param name
@@ -3339,6 +3339,23 @@ declare enum DetailedResult {
3339
3339
  kEcsIn = 11,
3340
3340
  kNewCommadIn = 12
3341
3341
  }
3342
+ declare enum UserInputControls {
3343
+ kGovernedByOrthoMode = 1,
3344
+ kNullResponseAccepted = 2,
3345
+ kDontEchoCancelForCtrlC = 4,
3346
+ kDontUpdateLastPoint = 8,
3347
+ kNoDwgLimitsChecking = 16,
3348
+ kNoZeroResponseAccepted = 32,
3349
+ kNoNegativeResponseAccepted = 64,
3350
+ kAccept3dCoordinates = 128,
3351
+ kAcceptMouseUpAsPoint = 256,
3352
+ kAnyBlankTerminatesInput = 512,
3353
+ kInitialBlankTerminatesInput = 1024,
3354
+ kAcceptOtherInputString = 2048,
3355
+ kGovernedByUCSDetect = 4096,
3356
+ kNoZDirectionOrtho = 8192,
3357
+ kSpacesInAccepted = 16384
3358
+ }
3342
3359
  declare class MrxDbgUiPrBase {
3343
3360
  protected imp: any;
3344
3361
  protected status: MrxDbgUiPrBaseReturn;
@@ -3433,6 +3450,14 @@ declare class MrxDbgUiPrBase {
3433
3450
  * 是否禁用捕捉
3434
3451
  */
3435
3452
  isDisableOsnap(): boolean;
3453
+ /**
3454
+ * 返回输入控制设置,UserInputControls
3455
+ */
3456
+ userInputControls(): number;
3457
+ /**
3458
+ * 设置输入控制设置,UserInputControls
3459
+ */
3460
+ setUserInputControls(contros: number): void;
3436
3461
  }
3437
3462
  /**
3438
3463
  * MrxDbgUiPrPoint 用于构建一个取点对象
@@ -5244,6 +5269,8 @@ type Mx_DetailedResult = DetailedResult;
5244
5269
  declare const Mx_DetailedResult: typeof DetailedResult;
5245
5270
  type Mx_DynamicInputType = DynamicInputType;
5246
5271
  declare const Mx_DynamicInputType: typeof DynamicInputType;
5272
+ type Mx_UserInputControls = UserInputControls;
5273
+ declare const Mx_UserInputControls: typeof UserInputControls;
5247
5274
  type Mx_MrxDbgUiPrDist = MrxDbgUiPrDist;
5248
5275
  declare const Mx_MrxDbgUiPrDist: typeof MrxDbgUiPrDist;
5249
5276
  type Mx_MrxDbgUiPrInt = MrxDbgUiPrInt;
@@ -5319,6 +5346,7 @@ declare namespace Mx {
5319
5346
  Mx_MxCursorType as MxCursorType,
5320
5347
  Mx_DetailedResult as DetailedResult,
5321
5348
  Mx_DynamicInputType as DynamicInputType,
5349
+ Mx_UserInputControls as UserInputControls,
5322
5350
  Mx_MrxDbgUiPrDist as MrxDbgUiPrDist,
5323
5351
  Mx_MrxDbgUiPrInt as MrxDbgUiPrInt,
5324
5352
  Mx_MrxDbgUiPrString as MrxDbgUiPrString,
@@ -5334,4 +5362,4 @@ declare global {
5334
5362
  }
5335
5363
  }
5336
5364
 
5337
- export { DetailedResult, DynamicInputType, Layer, McEdGetPointWorldDrawObject, McGePoint3d, McGePoint3dArray, McGeTool, McGiWorldDraw, McGiWorldDrawType, MrxDbgUiPrAngle, MrxDbgUiPrBase, MrxDbgUiPrBaseReturn, MrxDbgUiPrDist, MrxDbgUiPrInt, MrxDbgUiPrKeyWord, MrxDbgUiPrPoint, MrxDbgUiPrString, MrxDbgUtils, Mx2PointArc, Mx3PointArc, MxCADObject, MxCursorType, MxDb2LineAngularDimension, MxDbAlignedDimension, MxDbAnyLine, MxDbArcShapeDraw, MxDbArea, MxDbArrow, MxDbCircleArc, MxDbCircleShape, MxDbCloudLine, MxDbCoord, MxDbDatabase, MxDbEllipse, MxDbEllipseArc, MxDbEllipseShape, MxDbEntity, MxDbGradientLine, MxDbGroup, MxDbHatch, MxDbImage, MxDbLayerTableRecord, MxDbLeadComment, MxDbLeadTag, MxDbLine, MxDbLineShape, MxDbPolyline, MxDbRect, MxDbRectBoxLeadComment, MxDbRegularPolygon, MxDbRegularPolygonShape, MxDbRingShape, MxDbSVG, MxDbSVGText, MxDbShape, MxDbSplineCurve, MxDbStarShape, MxDbText, MxDrawObject, MxFilters, MxFun, MxPaintBrush, MxThreeJS, MxType, Mxassembly, Mx as default, loadCoreCode, store, useCanvasResizeListener };
5365
+ export { DetailedResult, DynamicInputType, Layer, McEdGetPointWorldDrawObject, McGePoint3d, McGePoint3dArray, McGeTool, McGiWorldDraw, McGiWorldDrawType, MrxDbgUiPrAngle, MrxDbgUiPrBase, MrxDbgUiPrBaseReturn, MrxDbgUiPrDist, MrxDbgUiPrInt, MrxDbgUiPrKeyWord, MrxDbgUiPrPoint, MrxDbgUiPrString, MrxDbgUtils, Mx2PointArc, Mx3PointArc, MxCADObject, MxCursorType, MxDb2LineAngularDimension, MxDbAlignedDimension, MxDbAnyLine, MxDbArcShapeDraw, MxDbArea, MxDbArrow, MxDbCircleArc, MxDbCircleShape, MxDbCloudLine, MxDbCoord, MxDbDatabase, MxDbEllipse, MxDbEllipseArc, MxDbEllipseShape, MxDbEntity, MxDbGradientLine, MxDbGroup, MxDbHatch, MxDbImage, MxDbLayerTableRecord, MxDbLeadComment, MxDbLeadTag, MxDbLine, MxDbLineShape, MxDbPolyline, MxDbRect, MxDbRectBoxLeadComment, MxDbRegularPolygon, MxDbRegularPolygonShape, MxDbRingShape, MxDbSVG, MxDbSVGText, MxDbShape, MxDbSplineCurve, MxDbStarShape, MxDbText, MxDrawObject, MxFilters, MxFun, MxPaintBrush, MxThreeJS, MxType, Mxassembly, UserInputControls, Mx as default, loadCoreCode, store, useCanvasResizeListener };