HtmlFrameElement
Represents the HTML frame element.
using AngleSharp.Extensions;
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlFrameElement : HtmlFrameElementBase
{
public bool NoResize {
get {
return this.GetOwnAttribute(AttributeNames.NoResize).ToBoolean(false);
}
set {
this.SetOwnAttribute(AttributeNames.NoResize, value.ToString(), false);
}
}
public HtmlFrameElement(Document owner, string prefix = null)
: base(owner, TagNames.Frame, prefix, NodeFlags.SelfClosing)
{
}
}
}