ListViewItem.ListViewSubItem Constructors

Definition

Initializes a new instance of the ListViewItem.ListViewSubItem class.

Overloads

ListViewItem.ListViewSubItem()

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

ListViewItem.ListViewSubItem(ListViewItem, String)

Initializes a new instance of the ListViewItem.ListViewSubItem class with the specified owner and text.

ListViewItem.ListViewSubItem(ListViewItem, String, Color, Color, Font)

Initializes a new instance of the ListViewItem.ListViewSubItem class with the specified owner, text, foreground color, background color, and font values.

ListViewItem.ListViewSubItem()

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

public:
 ListViewSubItem();
public ListViewSubItem ();
Public Sub New ()

Applies to

ListViewItem.ListViewSubItem(ListViewItem, String)

Initializes a new instance of the ListViewItem.ListViewSubItem class with the specified owner and text.

public:
 ListViewSubItem(System::Windows::Forms::ListViewItem ^ owner, System::String ^ text);
public ListViewSubItem (System.Windows.Forms.ListViewItem owner, string text);
public ListViewSubItem (System.Windows.Forms.ListViewItem owner, string? text);
public ListViewSubItem (System.Windows.Forms.ListViewItem? owner, string? text);
new System.Windows.Forms.ListViewItem.ListViewSubItem : System.Windows.Forms.ListViewItem * string -> System.Windows.Forms.ListViewItem.ListViewSubItem
Public Sub New (owner As ListViewItem, text As String)

Parameters

owner
ListViewItem

A ListViewItem that represents the item that owns the subitem.

text
String

The text to display for the subitem.

See also

Applies to

ListViewItem.ListViewSubItem(ListViewItem, String, Color, Color, Font)

Initializes a new instance of the ListViewItem.ListViewSubItem class with the specified owner, text, foreground color, background color, and font values.

public:
 ListViewSubItem(System::Windows::Forms::ListViewItem ^ owner, System::String ^ text, System::Drawing::Color foreColor, System::Drawing::Color backColor, System::Drawing::Font ^ font);
public ListViewSubItem (System.Windows.Forms.ListViewItem owner, string text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);
public ListViewSubItem (System.Windows.Forms.ListViewItem owner, string? text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);
public ListViewSubItem (System.Windows.Forms.ListViewItem? owner, string? text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);
new System.Windows.Forms.ListViewItem.ListViewSubItem : System.Windows.Forms.ListViewItem * string * System.Drawing.Color * System.Drawing.Color * System.Drawing.Font -> System.Windows.Forms.ListViewItem.ListViewSubItem
Public Sub New (owner As ListViewItem, text As String, foreColor As Color, backColor As Color, font As Font)

Parameters

owner
ListViewItem

A ListViewItem that represents the item that owns the subitem.

text
String

The text to display for the subitem.

foreColor
Color

A Color that represents the foreground color of the subitem.

backColor
Color

A Color that represents the background color of the subitem.

font
Font

A Font that represents the font to display the subitem's text in.

See also

Applies to