DataGridView.AutoSizeRowsModeChanged Event
Occurs when the value of the DataGridViewAutoSizeRowsMode property changes.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
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: 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.