This documentation is archived and is not being maintained.

DataGridView.AutoSizeColumnModeChanged Event

Occurs when the value of the AutoSizeMode property of a column changes.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

'Declaration
Public Event AutoSizeColumnModeChanged As DataGridViewAutoSizeColumnModeEventHandler
'Usage
Dim instance As DataGridView 
Dim handler As DataGridViewAutoSizeColumnModeEventHandler 

AddHandler instance.AutoSizeColumnModeChanged, handler

For more information about handling events, see Consuming Events.

The following code example illustrates the use of this event. This example is part of a larger example available in How to: Manipulate Columns in the Windows Forms DataGridView Control.

' Updated the criteria label. 
Private Sub dataGridView_AutoSizeColumnCriteriaChanged( _
    ByVal sender As Object, _
    ByVal args As DataGridViewAutoSizeColumnModeEventArgs) _
    Handles DataGridView.AutoSizeColumnModeChanged

    args.Column.DataGridView.Parent. _
    Controls("flowlayoutpanel"). _
    Controls(criteriaLabel).Text = _
        criteriaLabel & args.Column.AutoSizeMode.ToString
End Sub

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: