How to Get Current Word in Blazor DOCX Editor
28 Aug 20262 minutes to read
The Blazor DOCX Editor (Document Editor) component allows you to get the current word or paragraph content as plain text or SFDT (rich text).
Select and get the word at the current cursor position
Use the SelectCurrentWordAsync API in the selection module to select the current word at the cursor position. Then, use the GetTextAsync API to get the selected content as plain text from the Blazor DOCX Editor component.
The following example code illustrates how to select and get the current word as plain text.
@using Syncfusion.Blazor.DocumentEditor
<SfDocumentEditorContainer @ref="container" EnableToolbar=true>
<DocumentEditorContainerEvents Created="OnCreated"></DocumentEditorContainerEvents>
</SfDocumentEditorContainer>
@code {
SfDocumentEditorContainer container;
public async void OnCreated(object args)
{
// To insert text at the cursor position
await container.DocumentEditor.Editor.InsertTextAsync("Document Editor");
// To select the current word in the document
await container.DocumentEditor.Selection.SelectCurrentWordAsync();
// To get the selected content as text
string selectedContent = await container.DocumentEditor.Selection.GetTextAsync();
}
}To get the bookmark content as SFDT (rich text), check this link.
Select and get the paragraph at the current cursor position
You can use the SelectParagraphAsync API in the selection module to select the current paragraph at the cursor position, and use the GetTextAsync API or the GetSfdtAsync API to get the selected content as plain text or SFDT from the Blazor DOCX Editor component.
The following example code illustrates how to select and get the current paragraph as SFDT.
@using Syncfusion.Blazor.DocumentEditor
<SfDocumentEditorContainer @ref="container" EnableToolbar=true>
<DocumentEditorContainerEvents Created="OnCreated"></DocumentEditorContainerEvents>
</SfDocumentEditorContainer>
@code {
SfDocumentEditorContainer container;
public async void OnCreated(object args)
{
// To insert text at the cursor position
await container.DocumentEditor.Editor.InsertTextAsync("Document Editor");
// To select the current paragraph in the document
await container.DocumentEditor.Selection.SelectParagraphAsync();
// To get the selected content as SFDT
string selectedContent = await container.DocumentEditor.Selection.GetSfdtAsync();
}
}