'Declaration
<SRCategoryAttribute("CatPropertyChanged")> <SRDescriptionAttribute("ListViewColumnWidthChangingDscr")> Public Event ColumnWidthChanging As System.Windows.Forms.ColumnWidthChangingEventHandler
'Usage
Dim instance As NListView Dim handler As System.Windows.Forms.ColumnWidthChangingEventHandler AddHandler instance.ColumnWidthChanging, handler
[SRCategory("CatPropertyChanged")] [SRDescription("ListViewColumnWidthChangingDscr")] public event System.Windows.Forms.ColumnWidthChangingEventHandler ColumnWidthChanging
Event Data
The event handler receives an argument of type System.Windows.Forms.ColumnWidthChangingEventArgs containing data related to this event. The following ColumnWidthChangingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
ColumnIndex | Gets the index of the column whose width is changing. |
NewWidth | Gets or sets the new width for 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