HTMLFrameElement
Represents the HTML frame element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLFrameElement")]
public sealed class HTMLFrameElement : HTMLFrameElementBase
{
[DOM("noResize")]
public bool NoResize {
get {
return Element.ToBoolean(GetAttribute("noresize"), false);
}
set {
SetAttribute("noresize", value.ToString());
}
}
protected internal override bool IsSpecial => true;
internal HTMLFrameElement()
{
_name = "frame";
}
}
}