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'
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
valuestring
Remarks
Properties
Value
The value property of the
CSSKeywordValue interface returns or sets the value of theCSSKeywordValue.
[Value("value")]
public string Value { get; set; }
Property Value
- string
A string.