mxdraw 0.1.209 → 0.1.210
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 +19 -0
- 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
|
@@ -1966,6 +1966,16 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
1966
1966
|
* ```
|
|
1967
1967
|
*/
|
|
1968
1968
|
setViewColor(color: number): void;
|
|
1969
|
+
/**
|
|
1970
|
+
* 返回视区背景色,
|
|
1971
|
+
* @param color 如0xFFFFFF 白色
|
|
1972
|
+
* @returns void
|
|
1973
|
+
* @example
|
|
1974
|
+
* ```typescript
|
|
1975
|
+
*
|
|
1976
|
+
* ```
|
|
1977
|
+
*/
|
|
1978
|
+
getViewColor(): number;
|
|
1969
1979
|
/**
|
|
1970
1980
|
* 设置视区背景色,
|
|
1971
1981
|
* @param width 宽度
|
|
@@ -2760,6 +2770,15 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2760
2770
|
* ```
|
|
2761
2771
|
*/
|
|
2762
2772
|
setPointMultipleSelect(isMultipleSelect?: boolean): void;
|
|
2773
|
+
/**
|
|
2774
|
+
* 当前是否为白色白背景色
|
|
2775
|
+
* @example
|
|
2776
|
+
* ```typescript
|
|
2777
|
+
*
|
|
2778
|
+
*
|
|
2779
|
+
* ```
|
|
2780
|
+
*/
|
|
2781
|
+
isWhiteViewColor(): boolean;
|
|
2763
2782
|
}
|
|
2764
2783
|
|
|
2765
2784
|
/**
|