Table of Contents

Class CSSKeywordValue

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The CSSKeywordValue interface of the CSS Typed Object Model API creates an object to represent CSS keywords and other identifiers.

[Value("CSSKeywordValue")]
public class CSSKeywordValue : CSSStyleValue
Inheritance
CSSKeywordValue
Inherited Members

Remarks

The interface instance name is a stringifier meaning that when used anywhere a string is expected it will return the value of CSSKeyword.value.

-'CSSImageValue'
-'CSSNumericValue'
-'CSSPositionValue'
-'CSSTransformValue'
-'CSSUnparsedValue'

See also on MDN

Constructors

CSSKeywordValue()

public CSSKeywordValue()

CSSKeywordValue(string)

The CSSKeywordValue() constructor
creates a new CSSKeywordValue object which represents CSS keywords and
other identifiers.

public CSSKeywordValue(string value)

Parameters

value string

Remarks

Properties

Value

The value property of the
CSSKeywordValue interface returns or sets the value of the
CSSKeywordValue.

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

Property Value

string

A string.

Remarks