You will create an action that inserts into the document a table with three rows and three columns. The first row is the table header. Similarly to the insert section action, you will use the InsertFragmentOperation.
Place the icon files for the menu item and for the toolbar in the frameworks / sdf directory.
fragment - set it to:
<table xmlns= "http://www.oxygenxml.com/sample/documentation"> <header><td/><td/><td/></header> <tr><td/><td/><td/></tr> <tr><td/><td/><td/></tr> </table>
insertLocation - to add tables at the end of the section use the following code:
ancestor::section/*[last()]
insertPosition - Select After.