Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BeforeCellPasteEventArgs<T>

    Show / Hide Table of Contents

    Class BeforeCellPasteEventArgs<T>

    Provides information about the BeforeCellPaste event.

    Inheritance
    System.Object
    GridEventBaseArgs
    BeforeCellPasteEventArgs<T>
    BeforeCellPasteEventArgs<T>
    Inherited Members
    GridEventBaseArgs.PreventRender
    Namespace: Syncfusion.Blazor.Grids
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class BeforeCellPasteEventArgs<T> : GridEventBaseArgs
    Type Parameters
    Name Description
    T

    TValue of grid component.

    Constructors

    BeforeCellPasteEventArgs()

    Declaration
    public BeforeCellPasteEventArgs()

    Properties

    Cancel

    Gets or sets whether to cancel the paste action for the cell.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    System.Boolean

    CellValue

    Gets or sets the value getting pasted in the cell. You can change value using BeforeCellPaste event.

    Declaration
    public string CellValue { get; set; }
    Property Value
    Type Description
    System.String

    ColumnIndex

    Gets the column index of the cell associated with paste action.

    Declaration
    public int ColumnIndex { get; }
    Property Value
    Type Description
    System.Int32

    ColumnName

    Gets the column field name of the cell associated with paste action.

    Declaration
    public string ColumnName { get; }
    Property Value
    Type Description
    System.String

    Data

    Gets the selected row data of the cell associated with paste action

    Declaration
    public T Data { get; }
    Property Value
    Type Description
    T

    RowIndex

    Gets the row index of the cell associated with paste action.

    Declaration
    public int RowIndex { get; }
    Property Value
    Type Description
    System.Int32
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved