ColumnHeader.AutoResize(ColumnHeaderAutoResizeStyle) Method

Definition

Resizes the width of the column as indicated by the resize style.

public:
 void AutoResize(System::Windows::Forms::ColumnHeaderAutoResizeStyle headerAutoResize);
public void AutoResize (System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize);
member this.AutoResize : System.Windows.Forms.ColumnHeaderAutoResizeStyle -> unit
Public Sub AutoResize (headerAutoResize As ColumnHeaderAutoResizeStyle)

Parameters

headerAutoResize
ColumnHeaderAutoResizeStyle

One of the ColumnHeaderAutoResizeStyle values.

Exceptions

A value other than None is passed to the AutoResize(ColumnHeaderAutoResizeStyle) method when the View property is a value other than Details.

Remarks

Calling the AutoResize method is only effective once the ListView and containing Form have been constructed, and the column is populated with items. If new items are added to the ListView, the column will not resize unless AutoResize is called again.

Applies to