Class LinkElementData<T>
Holds data on link element in HTML.
Used to expose data outside of HTML Renderer internal structure.
Inheritance
Inherited Members
Namespace: TheArtOfDev.HtmlRenderer.Core.Entities
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public sealed class LinkElementData<T>
Type Parameters
T
|
Constructors
LinkElementData(String, String, T)
Init.
Declaration
public LinkElementData(string id, string href, T rectangle)
Parameters
System.String
id
|
System.String
href
|
T
rectangle
|
Properties
AnchorId
Return the id of the element this anchor link is referencing.
Declaration
public string AnchorId { get; }
Property Value
System.String
|
Href
the href data of the link
Declaration
public string Href { get; }
Property Value
System.String
|
Id
the id of the link element if present
Declaration
public string Id { get; }
Property Value
System.String
|
IsAnchor
Is the link is directed to another element in the html
Declaration
public bool IsAnchor { get; }
Property Value
System.Boolean
|
Rectangle
the rectangle of element as calculated by html layout
Declaration
public T Rectangle { get; }
Property Value
T
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|