ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / C1DataGrid Class / ColumnHeaderDragDelta Event

In This Topic
    ColumnHeaderDragDelta Event
    In This Topic
    Occurs when a column header is being dragged.
    Syntax
    'Declaration
     
    
    Public Event ColumnHeaderDragDelta As EventHandler(Of C1DragDeltaEventArgs)
    public event EventHandler<C1DragDeltaEventArgs> ColumnHeaderDragDelta
    Event Data

    The event handler receives an argument of type C1.WPF.C1DragDeltaEventArgs containing data related to this event. The following C1DragDeltaEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the accumulated translation.  
    Gets the delta translation.  
    (Inherited from C1.WPF.C1DragEventArgs)
    (Inherited from C1.WPF.C1InputEventArgs)
    Gets a value indicating whether this event is raised because of a direct manipulation or is inertial.  
    (Inherited from C1.WPF.C1InputEventArgs)
    (Inherited from C1.WPF.C1InputEventArgs)
    (Inherited from C1.WPF.C1InputEventArgs)
    See Also