ListView::ColumnHeaderCollection::Insert Method (Int32, String^, String^, Int32, HorizontalAlignment, Int32)

 

Creates a new column header with the specified aligned text, key, width, and image index, and inserts the header into the collection at the specified index.

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

public:
void Insert(
	int index,
	String^ key,
	String^ text,
	int width,
	HorizontalAlignment textAlign,
	int imageIndex
)

Parameters

index
Type: System::Int32

The zero-based index location where the column header is inserted.

key
Type: System::String^

The name of the column header.

text
Type: System::String^

The text to display in the column header.

width
Type: System::Int32

The initial width, in pixels, of the column header.

textAlign
Type: System.Windows.Forms::HorizontalAlignment

One of the HorizontalAlignment values.

imageIndex
Type: System::Int32

The index of the image to display in the column header.

To add a column header without specifying a position in the collection, use the Add method. If you want to add an array of column headers to the collection, use the AddRange method.

The Name property corresponds to the key for a column in the ListView::ColumnHeaderCollection.

.NET Framework
Available since 2.0
Return to top
Show: