ListViewItem.ListViewSubItem Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.