AngleSharp by AngleSharp

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

.NET API 1,204,224 bytes

 HtmlFrameSetElement

Represents the HTML frameset element. Obsolete since HTML 4.01.
using AngleSharp.Attributes; using AngleSharp.Extensions; using AngleSharp.Html; namespace AngleSharp.Dom.Html { [DomHistorical] internal sealed class HtmlFrameSetElement : HtmlElement { public int Columns { get { return this.GetOwnAttribute(AttributeNames.Cols).ToInteger(1); } set { this.SetOwnAttribute(AttributeNames.Cols, value.ToString(), false); } } public int Rows { get { return this.GetOwnAttribute(AttributeNames.Rows).ToInteger(1); } set { this.SetOwnAttribute(AttributeNames.Rows, value.ToString(), false); } } public HtmlFrameSetElement(Document owner, string prefix = null) : base(owner, TagNames.Frameset, prefix, NodeFlags.Special) { } } }