diff --git a/docx/border/TSDocxBorders.tsf b/docx/border/TSDocxBorders.tsf index 9787666..296e7d3 100644 --- a/docx/border/TSDocxBorders.tsf +++ b/docx/border/TSDocxBorders.tsf @@ -91,7 +91,7 @@ Begin return border_obj; End; -// function +// Methods Function TSDocxBorders.Item(Index);virtual; Begin return self[Index]; diff --git a/docx/border/TSDocxBordersTable.tsf b/docx/border/TSDocxBordersTable.tsf index c188f84..a9ef667 100644 --- a/docx/border/TSDocxBordersTable.tsf +++ b/docx/border/TSDocxBordersTable.tsf @@ -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;