Table of Contents

Class HTMLTimeElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

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

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

Remarks

-The HTML element implementing this interface: time.

See also on MDN

Constructors

HTMLTimeElement()

public HTMLTimeElement()

Properties

DateTime

The
dateTime
property of the HTMLTimeElement interface is a string that reflects the datetime HTML attribute, containing a machine-readable form of the element's date and
time value.

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

Property Value

string

A string. For valid string formats, see the datetime valid values.

Remarks