Table of Contents

Enum CssValueType

Namespace
SharpVectors.Dom.Css
Assembly
SharpVectors.Core.dll

The CssValueType Enum contains the possible CSS Value Types. This is an extension to the CSS specification. The specification has a list of constants defined within the ICssValue Interface

public enum CssValueType

Fields

Inherit = 0

The value is inherited and the cssText contains "inherit".

PrimitiveValue = 1

The value is a primitive value and an instance of the ICssPrimitiveValue interface can be obtained by using binding-specific casting methods on this instance of the ICssValue interface.

ValueList = 2

The value is a ICssValue list and an instance of the ICssValueList interface can be obtained by using binding-specific casting methods on this instance of the ICssValue interface.

Custom = 3

The value is a custom value.