ColumnWidthChangingEventArgs Constructor (Int32, Int32, Boolean)

 

Initializes a new instance of the ColumnWidthChangingEventArgs class, specifying the column index and width and whether to cancel the event.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
ColumnWidthChangingEventArgs(
	int columnIndex,
	int newWidth,
	bool cancel
)

Parameters

columnIndex
Type: System::Int32

The index of the column whose width is changing.

newWidth
Type: System::Int32

The new width of the column.

cancel
Type: System::Boolean

true to cancel the width change; otherwise, false.

Passing in true for the cancel parameter will cause the width change to be canceled, and the column will return to its previous size.

.NET Framework
Available since 2.0
Return to top
Show: