修复table通过Item获取border失败问题

This commit is contained in:
csh 2024-02-29 09:16:52 +08:00
parent 649d7d868a
commit e4a6d3f0c2
2 changed files with 9 additions and 1 deletions

View File

@ -91,7 +91,7 @@ Begin
return border_obj;
End;
// function
// Methods
Function TSDocxBorders.Item(Index);virtual;
Begin
return self[Index];

View File

@ -7,6 +7,9 @@ public
private
table_;
public
Function Item(inde);override;
End;
@ -22,3 +25,8 @@ Begin
border_table_obj.Init(table_, index);
return border_table_obj;
End;
Function TSDocxBordersTable.Item(Index);override;
Begin
return self[Index];
End;