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

In This Topic
    ColumnResizing Event
    In This Topic
    Occurs while the user is resizing a column by dragging the border on the right of the column header.
    Syntax
    'Declaration
     
    
    Public Event ColumnResizing As EventHandler(Of DataGridColumnEventArgs)
    public event EventHandler<DataGridColumnEventArgs> ColumnResizing
    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