Wimark.Controls Class Library  

ListViewItem Constructor

Initializes a new instance of the ListViewItem class with default values.

Overload List

Initializes a new instance of the ListViewItem class with default values.

[Visual Basic] Public Sub New()
[C#] public ListViewItem();
[C++] public: ListViewItem();

Initializes a new instance of the ListViewItem class with specified item text.

[Visual Basic] Public Sub New(String)
[C#] public ListViewItem(string);
[C++] public: ListViewItem(String*);

Initializes a new instance of the ListViewItem class with specified item text and the image index position of the item's icon.

[Visual Basic] Public Sub New(String, Integer)
[C#] public ListViewItem(string, int);
[C++] public: ListViewItem(String*, int);

Initializes a new instance of the ListViewItem class with an array of strings representing subitems.

[Visual Basic] Public Sub New(String ())
[C#] public ListViewItem(string[]);
[C++] public: ListViewItem(String*);

Initializes a new instance of the ListViewItem class with an array of strings representing subitems and the image index position of the item's icon.

[Visual Basic] Public Sub New(String (), Integer)
[C#] public ListViewItem(string[], int);
[C++] public: ListViewItem(String*, int);

Initializes a new instance of the ListViewItem class with an array of strings representing subitems, the image index position of the item's icon, and the foreground color, background color, and font of the item.

[Visual Basic] Public Sub New(String (), Integer, Color, Color, Font)
[C#] public ListViewItem(string[], int, Color, Color, Font);
[C++] public: ListViewItem(String*, int, Color, Color, Font*);

Initializes a new instance of the ListViewItem class with an array of ListViewItem.ListViewSubItem objects and the image index position of the item's icon.

[Visual Basic] Public Sub New(ListViewSubItem (), Integer)
[C#] public ListViewItem(ListViewSubItem[], int);
[C++] public: ListViewItem(ListViewSubItem*, int);

See Also

ListViewItem Class | ListViewItem Members | Wimark.Controls Namespace