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
ContentHtml
Gets the content of the page that the nested browsing context is to contain.
[DomName("srcdoc")]
string? ContentHtml { get; set; }
Property Value
ContentWindow
Gets the frame's parent's window context.
[DomName("contentWindow")]
IWindow? ContentWindow { get; }
Property Value
DisplayHeight
Gets or sets the display height of the frame.
[DomName("height")]
int DisplayHeight { get; set; }
Property Value
DisplayWidth
Gets or sets the display width of the frame.
[DomName("width")]
int DisplayWidth { get; set; }
Property Value
IsFullscreenAllowed
Gets or sets if the frame's content can trigger the fullscreen mode.
[DomName("allowFullscreen")]
bool IsFullscreenAllowed { get; set; }
Property Value
IsPaymentRequestAllowed
Gets or sets if the frame's content can trigger a payment request.
[DomName("allowPaymentRequest")]
bool IsPaymentRequestAllowed { get; set; }
Property Value
IsSeamless
Gets or sets if the seamless attribute has been set.
[DomName("seamless")]
bool IsSeamless { get; set; }
Property Value
Name
Gets or sets the name of the frame.
[DomName("name")]
string? Name { get; set; }
Property Value
ReferrerPolicy
Gets or sets the frame's referrer policy.
[DomName("referrerPolicy")]
string? ReferrerPolicy { get; set; }
Property Value
Sandbox
Gets the tokens of the sandbox attribute.
[DomName("sandbox")]
ISettableTokenList Sandbox { get; }
Property Value
Source
Gets or sets the frame source.
[DomName("src")]
string? Source { get; set; }