Table of Contents

Interface IHtmlMapElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Represents the map HTML element.

[DomName("HTMLMapElement")]
public interface IHtmlMapElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
Inherited Members
Extension Methods

Properties

Areas

Gets a collection representing the area elements associated to this map.

[DomName("areas")]
IHtmlCollection<IHtmlAreaElement> Areas { get; }

Property Value

IHtmlCollection<IHtmlAreaElement>

Images

Gets a collection representing the img and object elements associated to this element.

[DomName("images")]
IHtmlCollection<IHtmlImageElement> Images { get; }

Property Value

IHtmlCollection<IHtmlImageElement>

Name

Gets or sets the name.

[DomName("name")]
string? Name { get; set; }

Property Value

string