'Declaration
<SRCategoryAttribute("CatPropertyChanged")> <SRDescriptionAttribute("DataGridViewAutoSizeColumnModeChangedDescr")> Public Event AutoSizeColumnModeChanged As System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler AddHandler instance.AutoSizeColumnModeChanged, handler
[SRCategory("CatPropertyChanged")] [SRDescription("DataGridViewAutoSizeColumnModeChangedDescr")] public event System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler AutoSizeColumnModeChanged
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs containing data related to this event. The following DataGridViewAutoSizeColumnModeEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column | Gets the column with the System.Windows.Forms.DataGridViewColumn.AutoSizeMode property that changed. |
PreviousMode | Gets the previous value of the System.Windows.Forms.DataGridViewColumn.AutoSizeMode property of the column. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also