DataGridViewAutoSizeModeEventArgs Class
Provides data for the DataGridView AutoSizeRowsModeChanged and RowHeadersWidthSizeModeChanged events.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The AutoSizeRowsModeChanged event is raised when the value of the AutoSizeRowsMode property of the DataGridView control changes. The RowHeadersWidthSizeModeChanged event is raised when the value of the RowHeadersWidthSizeMode property changes.
For more information about handling events, see Consuming Events.
The following code example demonstrates how to process the AutoSizeRowsModeChanged event. This code example is part of a larger example provided at How to: Automatically Resize Cells When Content Changes in the Windows Forms DataGridView Control.
Private Sub WatchRowsModeChanges(ByVal sender As Object, _ ByVal modeEvent As DataGridViewAutoSizeModeEventArgs) _ Handles DataGridView1.AutoSizeRowsModeChanged Dim label As Label = CType(FlowLayoutPanel1.Controls _ (currentLayoutName), Label) If modeEvent.PreviousModeAutoSized Then label.Text = "changed to different " & label.Name & _ DataGridView1.AutoSizeRowsMode.ToString() Else label.Text = label.Name & _ DataGridView1.AutoSizeRowsMode.ToString() End If 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.