Type: tr

Editable: false

Tags: tr

Any tr tag will become a block row of the table.

<table>
    <tr></tr>
</table>

getNextRow #

Returns the instance of the next row.

var instance = this.app.block.get();
var nextInstance = instance.getNextRow();

getPrevRow #

Returns the instance of the previous row.

var instance = this.app.block.get();
var prevInstance = instance.getPrevRow();