This commit is contained in:
csh 2023-08-02 16:32:01 +08:00
parent ced0d6b04c
commit 0c73a4c0d1
4 changed files with 13 additions and 6 deletions

View File

@ -1,4 +1,4 @@
// Version 1.3.7 // Version 1.3.8
Function TOfficeObj(n); Function TOfficeObj(n);
Begin Begin
@ -13134,6 +13134,7 @@ Type TDocumentBody = Class(DocObject)
//picture.Run.Drawing.WInline.b := 5080; //picture.Run.Drawing.WInline.b := 5080;
//picture.Run.Drawing.WInline.t := 0; //picture.Run.Drawing.WInline.t := 0;
//picture.Run.Drawing.WInline.l := 0; //picture.Run.Drawing.WInline.l := 0;
picture.pPr.Alignment := picture.pPr.Alignment ? picture.PPr.Alignment : "distributed";
addPart(posOpt, picture); addPart(posOpt, picture);
p := new TPicture(picture.node_); p := new TPicture(picture.node_);

View File

@ -1,4 +1,4 @@
// Version 1.3.7 // Version 1.3.8
Type TSDocxFile = Class Type TSDocxFile = Class
///Version: V1.0 2022-09-20 ///Version: V1.0 2022-09-20

View File

@ -1,4 +1,4 @@
// Version 1.3.7 // Version 1.3.8
Type TSExcelFile = Class Type TSExcelFile = Class
///Version: V1.0 2022-08-08 ///Version: V1.0 2022-08-08

View File

@ -1,14 +1,20 @@
# 更新日志 # 更新日志
## 2023-8-2
### V1.3.8
#### word
修复插入图片后,设置对齐失效问题
## 2023-7-26 ## 2023-7-26
### V1.3.7 ### V1.3.7
新增表格获取高度和宽度方法`table.Height(row) table.Width(col)`
#### word #### word
新增对表格的行高设置`table.RowHeight(row, height)` 新增表格获取高度和宽度方法`table.Height(row) table.Width(col)`
## 2023-7-19 ## 2023-7-19