HTMLBodyElement
Represents the HTML body element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLBodyElement")]
public sealed class HTMLBodyElement : HTMLElement, IImplClosed
{
[DOM("aLink")]
public string ALink {
get {
return GetAttribute("alink");
}
set {
SetAttribute("alink", value);
}
}
[DOM("background")]
public string Background {
get {
return GetAttribute("background");
}
set {
SetAttribute("background", value);
}
}
[DOM("bgColor")]
public string BgColor {
get {
return GetAttribute("bgcolor");
}
set {
SetAttribute("bgcolor", value);
}
}
[DOM("link")]
public string Link {
get {
return GetAttribute("link");
}
set {
SetAttribute("link", value);
}
}
[DOM("text")]
public string Text {
get {
return GetAttribute("text");
}
set {
SetAttribute("text", value);
}
}
[DOM("vLink")]
public string VLink {
get {
return GetAttribute("vlink");
}
set {
SetAttribute("vlink", value);
}
}
protected internal override bool IsSpecial => true;
internal HTMLBodyElement()
{
_name = "body";
}
}
}