UI Setting

Table Handle

Configure the behavior and display of row and column handles that appear when hovering over a table.

config: editor.table.handle · toolbar: new · table

What are Table Handles?

When you hover over a table, handles appear for adding/deleting, resizing, and aligning rows and columns.

ProductVersionRelease
SynapEditor3.0.22026.05
SynapViewer4.1.02026.04
SynapDocSwift2.7.12026.03

SynapEditor allows fine-grained control over the visibility and behavior of these handles.

Configuration

mode: classic · table handle
var config = Object.assign(synapEditorConfig, {
    'editor.license': synapEditorLicense,
    'editor.lang': 'en',
    'editor.toolbar': [
        'new', 'table'
    ],
    'editor.table.handle': true
});

// Create editor instance
var editor = new SynapEditor('synapEditor', config, initialHtml);