Variable: insertTable$
constinsertTable$:NodeRef<object>
A signal that will insert a table with the published amount of rows and columns into the active editor.
Example
const insertTable = usePublisher(insertTable$)
// ...
insertTable({ rows: 3, columns: 4 })
Type declaration
columns?
optionalcolumns:number
The nunber of columns of the table.
rows?
optionalrows:number
The nunber of rows of the table.