修复table通过Item获取border失败问题
This commit is contained in:
@@ -91,7 +91,7 @@ Begin
|
|||||||
return border_obj;
|
return border_obj;
|
||||||
End;
|
End;
|
||||||
|
|
||||||
// function
|
// Methods
|
||||||
Function TSDocxBorders.Item(Index);virtual;
|
Function TSDocxBorders.Item(Index);virtual;
|
||||||
Begin
|
Begin
|
||||||
return self[Index];
|
return self[Index];
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ public
|
|||||||
private
|
private
|
||||||
table_;
|
table_;
|
||||||
|
|
||||||
|
public
|
||||||
|
Function Item(inde);override;
|
||||||
|
|
||||||
End;
|
End;
|
||||||
|
|
||||||
|
|
||||||
@@ -22,3 +25,8 @@ Begin
|
|||||||
border_table_obj.Init(table_, index);
|
border_table_obj.Init(table_, index);
|
||||||
return border_table_obj;
|
return border_table_obj;
|
||||||
End;
|
End;
|
||||||
|
|
||||||
|
Function TSDocxBordersTable.Item(Index);override;
|
||||||
|
Begin
|
||||||
|
return self[Index];
|
||||||
|
End;
|
||||||
|
|||||||
Reference in New Issue
Block a user