blazor-devexpress-dot-aiintegration-dot-blazor-dot-richedit-5cfad7e0.md
A context menu item that proofreads the editor text.
Namespace : DevExpress.AIIntegration.Blazor.RichEdit
Assembly : DevExpress.AIIntegration.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.AIIntegration.Blazor.RichEdit
public class ProofreadAIContextMenuItem :
BaseAIContextMenuItem
Populate the DxRichEdit.Extensions collection with the ProofreadAIContextMenuItem object to add the Proofread item to the editor context menu. This item reviews selected text for spelling, grammar, punctuation, and style errors.
Read Tutorial: Get Started with AI-powered Extension for Blazor Rich Text Editor
View Example: Rich Text Editor and HTML Editor for Blazor - How to integrate AI-powered extensions
@using DevExpress.AIIntegration.Blazor.RichEdit
@using DevExpress.Blazor.RichEdit
<DxRichEdit>
<Extensions>
<SummarizeAIContextMenuItem />
<ExplainAIContextMenuItem />
<ProofreadAIContextMenuItem />
<ExpandAIContextMenuItem />
<ShortenAIContextMenuItem />
<AskAssistantAIContextMenuItem />
<ChangeStyleAIContextMenuItem />
<ChangeToneAIContextMenuItem />
<GenerateDescriptionAIContextMenuItem />
<TranslateAIContextMenuItem Languages="@("English, German, French, Chinese")" />
</Extensions>
</DxRichEdit>
Object ComponentBase DevExpress.AIIntegration.Blazor.Internal.BasePopupItem BaseAIContextMenuItem ProofreadAIContextMenuItem
See Also