Table of Contents

Interface IHtmlVideoElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Represents the video HTML element.

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

Properties

DisplayHeight

Gets or sets the displayed height of the video element.

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

Property Value

int

DisplayWidth

Gets or sets the displayed width of the video element.

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

Property Value

int

OriginalHeight

Gets the height of the video.

[DomName("videoHeight")]
int OriginalHeight { get; }

Property Value

int

OriginalWidth

Gets the width of the video.

[DomName("videoWidth")]
int OriginalWidth { get; }

Property Value

int

Poster

Gets or sets the URL to a preview image.

[DomName("poster")]
string? Poster { get; set; }

Property Value

string