Interface IHtmlAreaElement
- Namespace
- AngleSharp.Html.Dom
- Assembly
- AngleSharp.dll
Represents the area HTML element.
[DomName("HTMLAreaElement")]
public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IUrlUtilities
- Inherited Members
- Extension Methods
Properties
AlternativeText
Gets or sets the alternative text for the element.
[DomName("alt")]
string? AlternativeText { get; set; }
Property Value
Coordinates
Gets or sets the coordinates to define the hot-spot region.
[DomName("coords")]
string? Coordinates { get; set; }
Property Value
Download
Gets or sets the linked resource is intended to be downloaded rather than displayed. The value represent the proposed name of the file. If the name is not a valid filename of the underlying OS, the navigator will adapt it.
[DomName("download")]
string? Download { get; set; }
Property Value
Ping
Gets the ping HTML attribute, as a settable list of otkens.
[DomName("ping")]
ISettableTokenList Ping { get; }
Property Value
Relation
Gets or sets the value indicating relationships of the current document to the linked resource.
[DomName("rel")]
string? Relation { get; set; }
Property Value
RelationList
Gets the value indicating relationships of the current document to the linked resource, as a list of tokens.
[DomName("relList")]
ITokenList RelationList { get; }
Property Value
Shape
Gets or sets the shape of the hot-spot, limited to known values.
[DomName("shape")]
string? Shape { get; set; }
Property Value
Target
Gets or sets the browsing context in which to open the linked resource.
[DomName("target")]
string? Target { get; set; }
Property Value
TargetLanguage
Gets or sets the language of the linked resource.
[DomName("hreflang")]
string? TargetLanguage { get; set; }
Property Value
Type
Gets or sets the MIME type of the linked resource.
[DomName("type")]
string? Type { get; set; }