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

In This Topic
    ColumnResized Event
    In This Topic
    Occurs when the user release the mouse after dragging the border on the right of the column header.
    Syntax
    'Declaration
     
    
    Public Event ColumnResized As EventHandler(Of DataGridColumnEventArgs)
    public event EventHandler<DataGridColumnEventArgs> ColumnResized
    Event Data

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

    PropertyDescription
    Gets the column.  
    See Also