Hi Niharika,
Syncfusion Greetings!
Customizing and positioning text formatting properties pane is
not possible. But you can customize the toolbar items with text formatting API,
based on your requirement.
You can use existing toolbar items in Documenteditor by
referring below code snippet:
|
<SfDocumentEditorContainer @ref="container" EnableToolbar=true
ToolbarItems="@Items">
</SfDocumentEditorContainer>
@code {
SfDocumentEditorContainer
container;
List<Object> Items = new
List<Object> { new CustomToolbarItemModel() { Id = "save",
Text = "Save" }, "New", "Undo",
"Redo", "Comments", "Image", "Table",
"Hyperlink", "Bookmark", "TableOfContents",
"Header", "Footer", "PageSetup",
"PageNumber", "Break", "Find",
"LocalClipboard", "RestrictEditing" };
}
|
Note: We have added custom save button and existing toolbar
items, you can use it based on your requirement.
please refer below link for text formatting API:
https://blazor.syncfusion.com/documentation/document-editor/text-format
Regards,
Thanveer Ahamed A