DataGridViewAutoSizeColumnModeEventArgs Class
Provides data for the DataGridView::AutoSizeColumnModeChanged event.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Name | Description | |
|---|---|---|
![]() | DataGridViewAutoSizeColumnModeEventArgs(DataGridViewColumn^, DataGridViewAutoSizeColumnMode) | Initializes a new instance of the DataGridViewAutoSizeColumnModeEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Column | Gets the column with the AutoSizeMode property that changed. |
![]() | PreviousMode | Gets the previous value of the AutoSizeMode property of the column. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The AutoSizeColumnModeChanged event is raised when the value of the AutoSizeMode property of a column in a DataGridView control changes.
For more information about handling events, see NIB: Consuming Events.
The following code example illustrates the use of this type. This example is part of a larger example available in How to: Manipulate Columns in the Windows Forms DataGridView Control.
// Updated the criteria label. void dataGridView_AutoSizeColumnModeChanged( Object^ /*sender*/, DataGridViewAutoSizeColumnModeEventArgs^ args ) { args->Column->DataGridView->Parent->Controls[ L"flowlayoutpanel" ]->Controls[ criteriaLabel ]->Text = String::Concat( criteriaLabel, args->Column->AutoSizeMode ); }
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
DataGridView
DataGridView::AutoSizeColumnModeChanged
DataGridViewColumn
DataGridViewColumn::AutoSizeMode
DataGridViewAutoSizeColumnMode
DataGridViewAutoSizeColumnModeEventHandler
DataGridView::OnAutoSizeColumnModeChanged
System.Windows.Forms Namespace
Resizing Columns and Rows in the Windows Forms DataGridView Control


