CSSValue Class
Represents a simple or a complex value. A CSSValue object only occurs in a context of a CSS property.
Inheritance Hierarchy

Namespace: Aspose.Html.Dom.Css
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
public abstract class CSSValue : DOMObject

The CSSValue type exposes the following members.

Constructors
  NameDescription
Protected methodCSSValue
Initializes a new instance of the CSSValue class.
Properties
  NameDescription
Public propertyCSSText
A string representation of the current value.
Public propertyCSSValueType
A code defining the type of the value.
Methods
Operators
  NameDescription
Public operatorStatic memberEquality
Implements the operator ==.
Public operatorStatic memberInequality
Implements the operator !=.
Fields
  NameDescription
Public fieldStatic memberCSS_CUSTOM
The value is a custom value.
Public fieldStatic memberCSS_INHERIT
The value is inherited and the cssText contains "inherit".
Public fieldStatic memberCSS_PRIMITIVE_VALUE
The value is a primitive value and an instance of the CSSPrimitiveValue interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
Public fieldStatic memberCSS_VALUE_LIST
The value is a CSSValue list and an instance of the CSSValueList interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
See Also