Class CSSUnparsedValue
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The CSSUnparsedValue interface of the CSS Typed Object Model API represents property values that reference custom properties. It consists of a list of string fragments and variable references.
[Value("CSSUnparsedValue")]
public class CSSUnparsedValue : CSSStyleValue
- Inheritance
-
CSSUnparsedValue
- Inherited Members
Remarks
Custom properties are represented by CSSUnparsedValue and {{cssxref("var", "var()")}} references are represented using 'CSSVariableReferenceValue'.
-'CSSImageValue'
-'CSSKeywordValue'
-'CSSNumericValue'
-'CSSPositionValue'
-'CSSTransformValue'
-Using the CSS Typed OM
-CSS Typed Object Model API
Constructors
CSSUnparsedValue()
public CSSUnparsedValue()
CSSUnparsedValue(List<Union11>)
The CSSUnparsedValue() constructor
creates a new CSSUnparsedValue object which represents property values
that reference custom properties.
public CSSUnparsedValue(List<Union11> members)
Parameters
Remarks
-CSSUnparsedValue.Entries
-CSSUnparsedValue.ForEach
-CSSUnparsedValue.Keys
-Length
-CSSUnparsedValue.Values
-Using the CSS Typed OM
-CSS Typed Object Model API
Properties
this[int]
public Union11 this[int i] { get; set; }
Parameters
iint
Property Value
Length
The length read-only property of the
CSSUnparsedValue interface returns the number of items in the object.
[Value("length")]
public ulong Length { get; }
Property Value
- ulong
An integer.
Remarks
-CSSUnparsedValue(List<Union11>)
-CSSUnparsedValue.Entries
-CSSUnparsedValue.ForEach
-CSSUnparsedValue.Keys
-CSSUnparsedValue.Values
-Using the CSS Typed OM
-CSS Typed Object Model API