Table of Contents

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

See also on MDN

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

members List<Union11>

Remarks

-CSSUnparsedValue.Entries
-CSSUnparsedValue.ForEach
-CSSUnparsedValue.Keys
-Length
-CSSUnparsedValue.Values
-Using the CSS Typed OM
-CSS Typed Object Model API

See also on MDN

Properties

this[int]

public Union11 this[int i] { get; set; }

Parameters

i int

Property Value

Union11

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

See also on MDN