Table of Contents

Class HTMLDataElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The HTMLDataElement interface provides special properties (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating {{HTMLElement("data")}} elements.

[Value("HTMLDataElement")]
public class HTMLDataElement : HTMLElement
Inheritance
HTMLDataElement
Inherited Members

Remarks

-The HTML element implementing this interface: data.

See also on MDN

Constructors

HTMLDataElement()

public HTMLDataElement()

Properties

Value

The value property of the HTMLDataElement
interface returns a string reflecting the value HTML attribute.

[Value("value")]
public string Value { get; set; }

Property Value

string

A string.

Remarks