Class CSSNamespaceRule
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The CSSNamespaceRule interface describes an object representing a single CSS @namespace at-rule.
[Value("CSSNamespaceRule")]
public class CSSNamespaceRule : CSSRule
- Inheritance
-
CSSNamespaceRule
- Inherited Members
Remarks
Constructors
CSSNamespaceRule()
public CSSNamespaceRule()
Properties
NamespaceURI
The read-only namespaceURI property of the CSSNamespaceRule returns a string containing the text of the URI of the given namespace.
[Value("namespaceURI")]
public string NamespaceURI { get; }
Property Value
- string
A string containing a URI.
Remarks
Prefix
The read-only prefix property of the CSSNamespaceRule returns a string with the name of the prefix associated to this namespace. If there is no such prefix, it returns an empty string.
[Value("prefix")]
public string Prefix { get; }
Property Value
- string
A string containing the prefix associated to this namespace. If there is no prefix an empty string.