mxdraw 0.1.206 → 0.1.208
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 +14 -1
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -1762,6 +1762,14 @@ declare class MxFunClass {
|
|
|
1762
1762
|
* 初始快捷命令。
|
|
1763
1763
|
* */
|
|
1764
1764
|
initQuickCommand: (aryQuickCommand: string[][]) => void;
|
|
1765
|
+
/**
|
|
1766
|
+
* 初始化语言表
|
|
1767
|
+
* */
|
|
1768
|
+
InitLanguageString: (mapid2str: Object) => void;
|
|
1769
|
+
/**
|
|
1770
|
+
* 得以语言字符串
|
|
1771
|
+
* */
|
|
1772
|
+
getLanguageString: (id: string, sDef?: string) => string;
|
|
1765
1773
|
}
|
|
1766
1774
|
declare const MxFun: MxFunClass;
|
|
1767
1775
|
|
|
@@ -3413,10 +3421,15 @@ declare class MrxDbgUiPrBase {
|
|
|
3413
3421
|
*/
|
|
3414
3422
|
setMessage(message: string): void;
|
|
3415
3423
|
/**
|
|
3416
|
-
*
|
|
3424
|
+
* 清除上一次的输入点
|
|
3417
3425
|
* @returns 选择的关键字
|
|
3418
3426
|
*/
|
|
3419
3427
|
clearLastInputPoint(): void;
|
|
3428
|
+
/**
|
|
3429
|
+
* 设置上一次的输入点。
|
|
3430
|
+
* @returns 选择的关键字
|
|
3431
|
+
*/
|
|
3432
|
+
setLastInputPoint(pt: THREE.Vector3 | undefined): void;
|
|
3420
3433
|
/**
|
|
3421
3434
|
* 返回用户选择的关键字
|
|
3422
3435
|
* @returns 选择的关键字
|