AngleSharp by Florian Rappl

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

.NET API 681,472 bytes

 HTMLIFrameElement

public sealed class HTMLIFrameElement : HTMLFrameElementBase
Represents the HTML iframe element.
namespace AngleSharp.DOM.Html { [DOM("HTMLIFrameElement")] public sealed class HTMLIFrameElement : HTMLFrameElementBase { [DOM("align")] public Alignment Align { get { return Element.ToEnum(GetAttribute(AttributeNames.Align), Alignment.Bottom); } set { SetAttribute(AttributeNames.Align, value.ToString()); } } protected internal override bool IsSpecial => true; internal HTMLIFrameElement() { _name = "iframe"; } } }