Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxRichEdit.AdditionalItems Property

Allows you to add custom items to the editor’s context menu.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v24.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
[Parameter]
public RenderFragment AdditionalItems { get; set; }

#Property Value

Type Description
RenderFragment

A collection of items (UI fragment).

#Remarks

You can use the AdditionalItems property to add AI-powered items to the editor’s context menu.

Razor
@using DevExpress.AIIntegration.Blazor.RichEdit
@using DevExpress.Blazor.RichEdit

<DxRichEdit>
    <AdditionalItems>
        <SummarizeAIContextMenuItem />
        <ExplainAIContextMenuItem />
        <ProofreadAIContextMenuItem />
        <ExpandAIContextMenuItem />
        <ShortenAIContextMenuItem />
        <AskAssistantAIContextMenuItem />
        <ChangeStyleAIContextMenuItem />
        <ChangeToneAIContextMenuItem />
        <GenerateDescriptionAIContextMenuItem/>
        <TranslateAIContextMenuItem Languages="@("German, French, Chinese")" />
    </AdditionalItems>
</DxRichEdit>

AI-powered Extension for RichEdit

To learn more, see the following section: AI-powered Extension for Blazor Rich Text Editor.

Run Demo: AI-powered Extensions - Rich Text Editor View Example: Rich Text Editor and HTML Editor for Blazor - How to integrate AI-powered extensions

See Also