Table of Contents

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

id string
href string
rectangle T

Properties

AnchorId

Return the id of the element this anchor link is referencing.

public string AnchorId { get; }

Property Value

string

Href

the href data of the link

public string Href { get; }

Property Value

string

Id

the id of the link element if present

public string Id { get; }

Property Value

string

IsAnchor

Is the link is directed to another element in the html

public bool IsAnchor { get; }

Property Value

bool

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()

Returns

string