Table of Contents

Class HTMLModElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The HTMLModElement interface provides special properties (beyond the regular methods and properties available through the HTMLElement interface they also have available to them by inheritance) for manipulating modification elements, that is {{HTMLElement("del")}} and {{HTMLElement("ins")}}.

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

Remarks

-HTML elements implementing this interface: ins, del.

See also on MDN

Constructors

HTMLModElement()

public HTMLModElement()

Properties

Cite

The cite property of the HTMLModElement interface indicates the URL of the resource explaining the modification. It reflects the cite attribute of the del element and ins elements.

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

Property Value

string

A string representing a URL.

Remarks

DateTime

The dateTime property of the HTMLModElement interface is a string containing a machine-readable date with an optional time value. It reflects the datetime HTML attribute of the del and ins elements.

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

Property Value

string

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

Remarks