Table of Contents

Interface IHtmlInlineFrameElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Represents the iframe HTML element.

[DomName("HTMLIFrameElement")]
public interface IHtmlInlineFrameElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, ILoadableElement
Inherited Members
Extension Methods

Properties

ContentDocument

Gets the document this frame contains, if there is any.

[DomName("contentDocument")]
IDocument? ContentDocument { get; }

Property Value

IDocument

ContentHtml

Gets the content of the page that the nested browsing context is to contain.

[DomName("srcdoc")]
string? ContentHtml { get; set; }

Property Value

string

ContentWindow

Gets the frame's parent's window context.

[DomName("contentWindow")]
IWindow? ContentWindow { get; }

Property Value

IWindow

DisplayHeight

Gets or sets the display height of the frame.

[DomName("height")]
int DisplayHeight { get; set; }

Property Value

int

DisplayWidth

Gets or sets the display width of the frame.

[DomName("width")]
int DisplayWidth { get; set; }

Property Value

int

IsFullscreenAllowed

Gets or sets if the frame's content can trigger the fullscreen mode.

[DomName("allowFullscreen")]
bool IsFullscreenAllowed { get; set; }

Property Value

bool

IsPaymentRequestAllowed

Gets or sets if the frame's content can trigger a payment request.

[DomName("allowPaymentRequest")]
bool IsPaymentRequestAllowed { get; set; }

Property Value

bool

IsSeamless

Gets or sets if the seamless attribute has been set.

[DomName("seamless")]
bool IsSeamless { get; set; }

Property Value

bool

Name

Gets or sets the name of the frame.

[DomName("name")]
string? Name { get; set; }

Property Value

string

ReferrerPolicy

Gets or sets the frame's referrer policy.

[DomName("referrerPolicy")]
string? ReferrerPolicy { get; set; }

Property Value

string

Sandbox

Gets the tokens of the sandbox attribute.

[DomName("sandbox")]
ISettableTokenList Sandbox { get; }

Property Value

ISettableTokenList

Source

Gets or sets the frame source.

[DomName("src")]
string? Source { get; set; }

Property Value

string