HtmlDocument.BackColor Property

Definition

Gets or sets the background color of the HTML document.

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

The Color of the document's background.

Remarks

BackColor will display when no other element occupies that area of the screen.

The Color type in the .NET Framework supports an Alpha value, but the HTML DOM does not. Therefore, Alpha will have no effect when assigned to this property.

Applies to

See also