AngleSharp by AngleSharp

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

.NET API 837,632 bytes

 HtmlAreaElement

Represents the area element.
using AngleSharp.Dom; using AngleSharp.Dom.Events; namespace AngleSharp.Html.Dom { internal sealed class HtmlAreaElement : HtmlUrlBaseElement, IHtmlAreaElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IUrlUtilities { public string AlternativeText { get { return this.GetOwnAttribute(AttributeNames.Alt); } set { this.SetOwnAttribute(AttributeNames.Alt, value, false); } } public string Coordinates { get { return this.GetOwnAttribute(AttributeNames.Coords); } set { this.SetOwnAttribute(AttributeNames.Coords, value, false); } } public string Shape { get { return this.GetOwnAttribute(AttributeNames.Shape); } set { this.SetOwnAttribute(AttributeNames.Shape, value, false); } } public HtmlAreaElement(Document owner, string prefix = null) : base(owner, TagNames.Area, prefix, NodeFlags.SelfClosing | NodeFlags.Special) { } } }