HTMLIFrameElement
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";
}
}
}