blazor-devexpress-dot-aiintegration-dot-blazor-dot-htmleditor-ebaaf0d8.md
A toolbar item that explains the editor text.
Namespace : DevExpress.AIIntegration.Blazor.HtmlEditor
Assembly : DevExpress.AIIntegration.Blazor.HtmlEditor.v25.2.dll
NuGet Package : DevExpress.AIIntegration.Blazor.HtmlEditor
public class ExplainAIToolbarItem :
BaseAIToolbarItem
Populate the DxHtmlEditor.Extensions collection with the ExplainAIToolbarItem object to add the Explain item to the editor toolbar. This item transforms text into more understandable terms making complex content more accessible and understandable.
Read Tutorial: Get Started with AI-powered Extension for Blazor HTML Editor
View Example: Rich Text Editor and HTML Editor for Blazor - How to integrate AI-powered extensions
@using DevExpress.AIIntegration.Blazor.HtmlEditor
<DxHtmlEditor @bind-Markup="Value" >
<Extensions>
<SummarizeAIToolbarItem />
<ExplainAIToolbarItem />
<ProofreadAIToolbarItem />
<ExpandAIToolbarItem />
<ShortenAIToolbarItem />
<AskAssistantAIToolbarItem />
<ChangeStyleAIToolbarItem />
<ChangeToneAIToolbarItem />
<TranslateAIToolbarItem Languages="@("German, French, Chinese")" />
</Extensions>
</DxHtmlEditor>
Object ComponentBase DevExpress.AIIntegration.Blazor.Internal.BasePopupItem BaseAIToolbarItem ExplainAIToolbarItem
See Also