Class RichTextEditorDialogSettings
A class used for configuring the Rich Text Editor component's dialog properties. This class allows customization of dialog behavior and appearance within the Rich Text Editor.
Inheritance
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class RichTextEditorDialogSettings : OwningComponentBase
Constructors
RichTextEditorDialogSettings()
Declaration
public RichTextEditorDialogSettings()
Properties
IsModal
Gets or sets whether the dialog can be displayed as modal.
Declaration
public bool IsModal { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A System.Boolean indicating if the dialog should have modal behavior, thus overlaying and restricting interaction with the content beneath. |
Remarks
When set to true
, the dialog captures focus and interactions within its content until closed.
Target
Gets or sets the target element in which the dialog should be displayed.
Declaration
public string Target { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the CSS selector or element ID specifying the dialog's display target. |
Remarks
This property defines the DOM element where the dialog is appended, affecting its positioning and visibility scope.
ZIndex
Gets or sets the ZIndex that determines whether the dialog is displayed in front of or behind other components.
Declaration
public double ZIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double representing the stacking order of the dialog. Higher values place the dialog above lower value elements. |
Remarks
Use the ZIndex property to manage dialog visibility in relation to other component layers.
Methods
Dispose(Boolean)
Dispose unmanaged resources in the Syncfusion Blazor component.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | Boolean value to dispose the object. |
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |