menu

WinUI

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class GridCopyPasteCellEventArgs - WinUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Class GridCopyPasteCellEventArgs

    Provides data for CopyGridCellContent event.

    Inheritance
    System.Object
    GridCancelEventArgs
    GridCopyPasteCellEventArgs
    Inherited Members
    GridCancelEventArgs.OriginalSender
    Namespace: Syncfusion.UI.Xaml.Grids
    Assembly: Syncfusion.Grid.WinUI.dll
    Syntax
    public class GridCopyPasteCellEventArgs : GridCancelEventArgs

    Constructors

    GridCopyPasteCellEventArgs(Boolean, GridColumnBase, Object, Object, Object)

    Initializes a new instance of GridCopyPasteCellEventArgs class.

    Declaration
    public GridCopyPasteCellEventArgs(bool handled, GridColumnBase column, object OriginalSender, object rowData, object clipBoardValue)
    Parameters
    Type Name Description
    System.Boolean handled

    Indicates whether the event is canceled.

    GridColumnBase column

    The corresponding column that contains the selected cells in row.

    System.Object OriginalSender

    The source of the event.

    System.Object rowData

    The data item for the row for which the event occurred.

    System.Object clipBoardValue

    Contains the value selected cells for copy operation.

    Properties

    ClipBoardValue

    Gets or sets an object that represents the value of the selected cells being copied.

    Declaration
    public object ClipBoardValue { get; set; }
    Property Value
    Type Description
    System.Object

    An object that contains the value of selected cells.

    Column

    Gets the corresponding column that contains the selected cells in the row.

    Declaration
    public GridColumnBase Column { get; }
    Property Value
    Type
    GridColumnBase

    Handled

    Get or sets a value that indicates whether the CopyGridCellContent event was handled.

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

    true if the event is handle; otherwise, false.

    RowData

    Gets the data item for the row for which the event occurred.

    Declaration
    public object RowData { get; }
    Property Value
    Type
    System.Object
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved