Class PasteEventArgs<T>
Represents the arguments for an event that is triggered before pasting events onto the Scheduler.
Inheritance
System.Object
PasteEventArgs<T>
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class PasteEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The type of the values of schedule events. |
Constructors
PasteEventArgs()
Declaration
public PasteEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the paste operation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ClipboardText
Gets or sets the raw string content that was pasted from the clipboard.
Declaration
public string ClipboardText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The string representation of the pasted content from the clipboard. |
Data
Gets or sets the event data that is currently being pasted onto the Scheduler.
Declaration
public List<T> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> | A collection of event data objects where each object represents an event. The structure of each object is defined by a System.Collections.Generic.List<> |