Class DocumentEditorEvents
Configures document editor events.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class DocumentEditorEvents : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Constructors
DocumentEditorEvents()
Declaration
public DocumentEditorEvents()
Properties
Created
Triggers when the component is created.
Declaration
[Parameter]
[JsonIgnore]
public EventCallback<object> Created { get; set; }
Property Value
| Type | Description |
|---|---|
| EventCallback<object> | An event callback function. |
Destroyed
Triggers when the component is destroyed.
Declaration
[Parameter]
[JsonIgnore]
public EventCallback<object> Destroyed { get; set; }
Property Value
| Type | Description |
|---|---|
| EventCallback<object> | An event callback function. |
MetafileImageParsed
Throws event when a metafile image is parsed on importing a Word document. This event is used to add an equivalent raster image as a fallback.
Declaration
[Parameter]
[JsonIgnore]
public EventCallback<MetafileImageParsedEventArgs> MetafileImageParsed { get; set; }
Property Value
| Type |
|---|
| EventCallback<MetafileImageParsedEventArgs> |
Parent
Represent document edtitor component.
Declaration
[CascadingParameter]
protected SfDocumentEditor Parent { get; set; }
Property Value
| Type |
|---|
| SfDocumentEditor |
Methods
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
| Type | Description |
|---|---|
| Task | A Task representing the asynchronous operation. |