interface IStyleBlock
A CSS rule - ie ".chin { width: 100%; height: 100%; }"
public string FileName { get; }
The filename of the file containing this style block (or null if none)
public string AbsolutePath { get; }
The absolute on disk filename for this style block (or null if not on disk)
public int FileLine { get; }
The line in the file containing this style block
public IEnumerable<string> SelectorStrings { get; }
A list of selectors
public bool SetRawValue( string key, string value, string originalValue = null )
Update a raw style value
public List<IStyleBlock.StyleProperty> GetRawValues( )
😔 No documentation found.