alexa
menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download

    Show / Hide Table of Contents

    Class GridRowDragStartEventArgs

    Represents the data associated with the initiation of a row drag operation.

    Inheritance
    System.Object
    System.EventArgs
    GridRowDragStartEventArgs
    Inherited Members
    System.EventArgs.Empty
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Syncfusion.WinForms.DataGrid.Events
    Assembly: Syncfusion.SfDataGrid.WinForms.dll
    Syntax
    public class GridRowDragStartEventArgs : EventArgs

    Constructors

    GridRowDragStartEventArgs(IReadOnlyList<Object>)

    Initializes a new instance of the GridRowDragStartEventArgs class.

    Declaration
    public GridRowDragStartEventArgs(IReadOnlyList<object> draggingRecords)
    Parameters
    Type Name Description
    System.Collections.Generic.IReadOnlyList<System.Object> draggingRecords

    The collection of records involved in the drag operation.

    Properties

    DraggingRecords

    Gets the collection of records that are currently being dragged.

    Declaration
    public IReadOnlyList<object> DraggingRecords { get; }
    Property Value
    Type
    System.Collections.Generic.IReadOnlyList<System.Object>

    Handled

    Gets or sets a value indicating whether the event has been handled. Set this property to true to cancel or override the default drag start behavior.

    Declaration
    public bool Handled { get; set; }
    Property Value
    Type
    System.Boolean
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved