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
Images
Gets a collection representing the img and object elements associated to this element.
[DomName("images")]
IHtmlCollection<IHtmlImageElement> Images { get; }
Property Value
Name
Gets or sets the name.
[DomName("name")]
string? Name { get; set; }