AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.5" />

.NET API 1,244,160 bytes

 IHtmlAreaElement

Represents the area HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; namespace AngleSharp.Dom.Html { [DomName("HTMLAreaElement")] public interface IHtmlAreaElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IUrlUtilities { [DomName("alt")] string AlternativeText { get; set; } [DomName("coords")] string Coordinates { get; set; } [DomName("shape")] string Shape { get; set; } [DomName("target")] string Target { get; set; } [DomName("download")] string Download { get; set; } [DomName("ping")] ISettableTokenList Ping { get; } [DomName("rel")] string Relation { get; set; } [DomName("relList")] ITokenList RelationList { get; } [DomName("hreflang")] string TargetLanguage { get; set; } [DomName("type")] string Type { get; set; } } }