Class PasteEventArgs<T>
Represents the arguments for an event that is triggered before pasting events onto the Scheduler.
Inherited Members
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class PasteEventArgs<T>
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
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
ClipboardText
Gets or sets the raw string content that was pasted from the clipboard.
Declaration
[JsonPropertyName("clipboardText")]
public string ClipboardText { get; set; }
Property Value
| Type | Description |
|---|---|
| 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
[JsonPropertyName("data")]
public List<T> Data { get; set; }
Property Value
| Type | Description |
|---|---|
| List<T> | A collection of event data objects where each object represents an event. The structure of each object is defined by a List<T> |