Class PasteCleanupStartingEventArgs
Represents the event arguments for before-paste-cleanup event in the SfBlockEditor component.
Inherited Members
Namespace: Syncfusion.Blazor.BlockEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class PasteCleanupStartingEventArgs
Remarks
This event is triggered before the clipboard content gets cleaned up.
It allows inspecting and modifying the raw content before it is cleaned.
Constructors
PasteCleanupStartingEventArgs()
Declaration
public PasteCleanupStartingEventArgs()
Properties
Content
Gets or sets the raw content from the clipboard.
Declaration
public string Content { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string containing the uncleaned raw clipboard content. /// |
Remarks
This can be HTML or plain text, depending on the source of the copied content.