Hi Omar,
Greetings from Syncfusion support.
We have validated your query “Can the ‘inlineMode’ toolbar set with a static width? default is extended.”
In Rich Text Editor the inline toolbar width cannot be set manually, but youy requirement can be achieved by adding the separator in the toolbar items, the separator will make the items appear in the next line. We have prepared a sample for your reference,
Code Snippet:
export class AppComponent {
. . .
public toolbarSettings: ToolbarModule = {
items: [
'Bold',
'Italic',
'FontName',
'-',
'FontSize',
'Alignments',
'FontColor',
'-',
'BackgroundColor',
'ClearFormat',
'CreateLink'
]
};
. . .
} |
Please check the above code snippet and the sample and let us know if it resolves the issue.
Regards,
Revanth