Sign up (with export icon)

TableLayoutConfig

Api-interface icon interface

The configuration of the table layout feature.

Properties

  • Chevron-right icon

    Sets the preferred type for loading external tables.

    This setting overrides the default detection method and uses the specified type ('content' or 'layout').

    ClassicEditor
    	.create( {
    		table: {
    			tableLayout: {
    				preferredExternalTableType: 'content' // or 'layout'
    			}
    		}
    	} )
    	.then( ... )
    	.catch( ... );
    
    Copy code