Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 19, 2024 11:25
Show Gist options
  • Save bjoerntx/0cdfddee84a23c8680929d4ebf76860c to your computer and use it in GitHub Desktop.
Save bjoerntx/0cdfddee84a23c8680929d4ebf76860c to your computer and use it in GitHub Desktop.
function setTableCellText(tableId, row, column, text) {
TXTextControl.tables.getItem(table => {
table.cells.getItem(cell => {
cell.setText(text);
}, null, row, column);
}, null, tableId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
OSZAR »