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