BaseAIToolbarItem.Text Property
Specifies the AI Assistant toolbar item’s text.
Namespace: DevExpress.AIIntegration.Blazor.HtmlEditor
Assembly: DevExpress.AIIntegration.Blazor.HtmlEditor.v25.2.dll
NuGet Package: DevExpress.AIIntegration.Blazor.HtmlEditor
Declaration
[Parameter]
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| String | The item text. |
Remarks
Sets a custom text label for the AI Assistant toolbar item. Use this property to customize or localize the DevExpress Blazor HTML Editor’s UI.
@using DevExpress.AIIntegration.Blazor.HtmlEditor
<DxHtmlEditor @bind-Markup="Value">
<Extensions>
<SummarizeAIToolbarItem Text="Σύνοψη" />
</Extensions>
</DxHtmlEditor>
@code {
public string Value { get; set; }
}

See Also