Class RenderMode
Determines how the editing UI is displayed, either directly within the component's layout or in a separate popup.
Inheritance
System.Object
RenderMode
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class RenderMode : Enum
Remarks
Fields
Inline
Renders the editing component directly in place of the display text.
Declaration
public const RenderMode Inline
Field Value
Type | Description |
---|---|
RenderMode | The editor appears within the natural flow of the content. |
Remarks
Inline mode is ideal for simple edits where the editor's size is comparable to the display content.
Popup
Displays the editing component inside a popup window, overlaid on the content.
Declaration
public const RenderMode Popup
Field Value
Type | Description |
---|---|
RenderMode | The editor appears in a popup, which can be positioned relative to the component. |
Remarks
Popup mode is useful for complex editors like a Rich Text Editor or when the edited content requires more space than is available inline.