HTMLFrameSetElement
Represents the HTML frameset element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLFrameSetElement")]
public sealed class HTMLFrameSetElement : HTMLElement
{
[DOM("cols")]
public uint Cols {
get {
return Element.ToInteger(GetAttribute("cols"), 1);
}
set {
SetAttribute("cols", value.ToString());
}
}
[DOM("rows")]
public uint Rows {
get {
return Element.ToInteger(GetAttribute("rows"), 1);
}
set {
SetAttribute("rows", value.ToString());
}
}
protected internal override bool IsSpecial => true;
internal HTMLFrameSetElement()
{
_name = "frameset";
}
}
}