AngleSharp by Florian Rappl

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

.NET API 1,171,968 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 GetAttribute(AttributeNames.Cols).ToInteger(1); } set { SetAttribute(AttributeNames.Cols, value.ToString()); } } public int Rows { get { return GetAttribute(AttributeNames.Rows).ToInteger(1); } set { SetAttribute(AttributeNames.Rows, value.ToString()); } } public HtmlFrameSetElement(Document owner) : base(owner, Tags.Frameset, NodeFlags.Special) { } } }