.NET Framework Class Library
ListViewItem.BackColor Property

Gets or sets the background color of the item's text.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

Visual Basic (Declaration)
Public Property BackColor As Color
Visual Basic (Usage)
Dim instance As ListViewItem
Dim value As Color

value = instance.BackColor

instance.BackColor = value
C#
public Color BackColor { get; set; }
C++
public:
property Color BackColor {
    Color get ();
    void set (Color value);
}
J#
/** @property */
public Color get_BackColor ()

/** @property */
public void set_BackColor (Color value)
JScript
public function get BackColor () : Color

public function set BackColor (value : Color)

Property Value

A Color that represents the background color of the item's text.
Remarks

You can use the BackColor property to change the color displayed behind the item 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 item from another. For ", you could set the BackColor property to Red to identify items that have failed validation or are missing subitem information.

If you want to use the same background color for all subitems of an item, set the UseItemStyleForSubItems property to true. This will cause the colors and fonts specified for the item to be used for all subitem text.

Platforms

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0
See Also

Tags :


Page view tracker