editor-svg 1.0.13 → 1.0.14
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.
|
@@ -10,6 +10,15 @@ export declare class TableOperate {
|
|
|
10
10
|
private options;
|
|
11
11
|
constructor(draw: Draw);
|
|
12
12
|
insertTable(row: number, col: number): void;
|
|
13
|
+
/**
|
|
14
|
+
* 拆分表格合并
|
|
15
|
+
* @param index 表格索引
|
|
16
|
+
*/
|
|
17
|
+
combineTable(pagingId: string): {
|
|
18
|
+
combineTable: IElement;
|
|
19
|
+
startIndex: number;
|
|
20
|
+
endIndex: number;
|
|
21
|
+
};
|
|
13
22
|
insertTableTopRow(): void;
|
|
14
23
|
insertTableBottomRow(): void;
|
|
15
24
|
adjustColWidth(element: IElement): void;
|