alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class PasteEventArgs<T>

    Represents the arguments for an event that is triggered before pasting events onto the Scheduler.

    Inheritance
    object
    PasteEventArgs<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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

    true if the paste operation should be canceled; otherwise, false.

    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>

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved