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 GetAttribute(AttributeNames.NoResize).ToBoolean(false);
}
set {
SetAttribute(AttributeNames.NoResize, value.ToString());
}
}
public HtmlFrameElement(Document owner)
: base(owner, Tags.Frame, NodeFlags.SelfClosing)
{
}
}
}