修复table通过Item获取border失败问题
This commit is contained in:
parent
649d7d868a
commit
e4a6d3f0c2
|
|
@ -91,7 +91,7 @@ Begin
|
|||
return border_obj;
|
||||
End;
|
||||
|
||||
// function
|
||||
// Methods
|
||||
Function TSDocxBorders.Item(Index);virtual;
|
||||
Begin
|
||||
return self[Index];
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue