AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.8" />

.NET API 1,214,976 bytes

 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) { } } }