C# Class SharpVectors.Dom.Css.CssCollectedProperty

Used internally to store collected properties.
Show file Open project: daisy/tobi Class Usage Examples

Public Properties

Property Type Description
CssValue CssValue
Name string
Origin CssStyleSheetType
Priority string
Specificity int

Public Methods

Method Description
CssCollectedProperty ( string name, int specificity, CssValue cssValue, CssStyleSheetType origin, string priority ) : System

Private Methods

Method Description
IsBetterThen ( CssCollectedProperty existing ) : bool

Method Details

CssCollectedProperty() public method

public CssCollectedProperty ( string name, int specificity, CssValue cssValue, CssStyleSheetType origin, string priority ) : System
name string
specificity int
cssValue CssValue
origin CssStyleSheetType
priority string
return System

Property Details

CssValue public property

The value of the property
public CssValue,SharpVectors.Dom.Css CssValue
return CssValue

Name public property

The name of the property
public string Name
return string

Origin public property

The origin of the collected property.
public CssStyleSheetType Origin
return CssStyleSheetType

Priority public property

The priority of the property, e.g. "important"
public string Priority
return string

Specificity public property

The calculated specificity
public int Specificity
return int