Class PasteCleanupArgs
Provides information about a BeforePasteCleanup event.
Inheritance
System.Object
PasteCleanupArgs
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class PasteCleanupArgs : Object
Remarks
This class facilitates data management before content is pasted into the editor, allowing adjustments and custom handling.
Constructors
PasteCleanupArgs()
Declaration
public PasteCleanupArgs()
Properties
FilesData
Gets the list of image file data when pasting into the Rich Text Editor.
Declaration
public List<FileInfo> FilesData { get; set; }
Property Value
Remarks
FilesData provides an opportunity to validate, process, or reject multimedia additions during paste actions.
Value
Gets or sets the updated value of the Rich Text Editor.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the new editor value. |
Remarks
Value is integral to persist changes or integrate pasted elements cohesively into existing content.