ListViewItem.ListViewSubItem.BackColor Property
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.
Gets or sets the background color of the subitem's text.
public:
property System::Drawing::Color BackColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color BackColor { get; set; }
member this.BackColor : System.Drawing.Color with get, set
Public Property BackColor As Color
Property Value
A Color that represents the background color of the subitem's text.
Remarks
You can use the BackColor property to change the color displayed behind the subitem text. This property can be used if you want to use different background and foreground color combinations (using the ForeColor property to set the foreground color) to differentiate one subitem from another. For example, you could set the BackColor property to Red to identify subitems that display a negative value.
If the UseItemStyleForSubItems property of the ListViewItem that owns the subitem is set to true
, setting this property has no effect.