Class HTMLQuoteElement
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The HTMLQuoteElement interface provides special properties and methods (beyond the regular HTMLElement interface it also has available to it by inheritance) for manipulating quoting elements, like {{HTMLElement("blockquote")}} and {{HTMLElement("q")}}, but not the {{HTMLElement("cite")}} element.
[Value("HTMLQuoteElement")]
public class HTMLQuoteElement : HTMLElement
- Inheritance
-
HTMLQuoteElement
- Inherited Members
Remarks
-The HTML elements implementing this interface: blockquote and q, but not cite.
Constructors
HTMLQuoteElement()
public HTMLQuoteElement()
Properties
Cite
The cite property of the HTMLQuoteElement interface indicates the URL for the source of the quotation. It reflects the {{HTMLElement("q")}} element's cite attribute.
[Value("cite")]
public string Cite { get; set; }
Property Value
- string
A string representing a URL.