using System; namespace SharpVectors.Dom.Css { /// /// The different types of CssStyleSheets /// /// niklas@protocol7.com /// 100 public enum CssStyleSheetType { /// /// The stylesheet is a user agent stylesheet /// UserAgent, /// /// The stylesheet is a author stylesheet /// Author, /// /// The stylesheet is a user stylesheet /// User, /// /// The styles comes from a inline style attribute /// Inline, NonCssPresentationalHints, /// /// Used internally for collection of styles for an element /// Collector, /// /// Used internally for unknown properties /// Unknown }; }