ICssRule.cs :  » GUI » SharpVectorGraphics » SharpVectors » Dom » Css » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » GUI » SharpVectorGraphics 
SharpVectorGraphics » SharpVectors » Dom » Css » ICssRule.cs
using System;

namespace SharpVectors.Dom.Css{
  /// <summary>
  /// The CSSRule interface is the abstract base interface for any
  /// type of CSS statement. This includes both rule sets and 
  /// at-rules. An implementation is expected to preserve all rules 
  /// specified in a CSS style sheet, even if the rule is not recognized 
  /// by the parser. Unrecognized rules are represented using the 
  /// CSSUnknownRule interface. 
  /// </summary>
  /// <developer>niklas@protocol7.com</developer>
  /// <completed>80</completed>  
  public interface ICssRule
  {
    /// <summary>
    /// The type of the rule, as defined above. The expectation is that binding-specific casting methods can be used to cast down from an instance of the CSSRule interface to the specific derived interface implied by the type.
    /// </summary>
    SharpVectors.Dom.Css.ICssStyleSheet ParentStyleSheet{get;}

    /// <summary>
    /// The style sheet that contains this rule.
    /// </summary>
    SharpVectors.Dom.Css.ICssRule ParentRule{get;}
  
    /// <summary>
    /// If this rule is contained inside another rule (e.g. a style rule inside an @media block), this is the containing rule. If this rule is not nested inside any other rules, this returns null
    /// </summary>
    SharpVectors.Dom.Css.CssRuleType Type{get;}
  
    /// <summary>
    /// The parsable textual representation of the rule. This reflects the current state of the rule and not its initial value
    /// </summary>
    /// <exception cref="DomException">SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable.</exception>
    /// <exception cref="DomException">INVALID_MODIFICATION_ERR: Raised if the specified CSS string value represents a different type of rule than the current one.</exception>
    /// <exception cref="DomException">HIERARCHY_REQUEST_ERR: Raised if the rule cannot be inserted at this point in the style sheet.</exception>
    /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if the rule is readonly.</exception>
    string CssText{get;set;}
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.