HTMLFrameElementBase
Represents the base class for frame elements.
namespace AngleSharp.DOM.Html
{
public abstract class HTMLFrameElementBase : HTMLFrameOwnerElement
{
[DOM("name")]
public string Name {
get {
return GetAttribute("name");
}
set {
SetAttribute("name", value);
}
}
[DOM("src")]
public string Src {
get {
return GetAttribute("src");
}
set {
SetAttribute("src", value);
}
}
[DOM("scrolling")]
public string Scrolling {
get {
return GetAttribute("scrolling");
}
set {
SetAttribute("scrolling", value);
}
}
[DOM("contentDocument")]
public Document ContentDocument { get; set; }
[DOM("longDesc")]
public string LongDesc {
get {
return GetAttribute("longdesc");
}
set {
SetAttribute("longdesc", value);
}
}
[DOM("frameBorder")]
public string FrameBorder {
get {
return GetAttribute("frameborder");
}
set {
SetAttribute("frameborder", value);
}
}
internal HTMLFrameElementBase()
{
}
}
}