Last change
on this file since 13067 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
553 bytes
|
Line | |
---|
1 | // <developer>niklas@protocol7.com</developer>
|
---|
2 | // <completed>0</completed>
|
---|
3 |
|
---|
4 | using System;
|
---|
5 | using System.Xml;
|
---|
6 |
|
---|
7 | namespace SharpVectors.Dom.Css
|
---|
8 | {
|
---|
9 | /// <summary>
|
---|
10 | /// This interface represents a document with a CSS view.
|
---|
11 | /// </summary>
|
---|
12 | public interface IDocumentCss : Stylesheets.IDocumentStyle
|
---|
13 | {
|
---|
14 | /// <summary>
|
---|
15 | /// This method is used to retrieve the override style declaration for a specified element and a specified pseudo-element.
|
---|
16 | /// </summary>
|
---|
17 | ICssStyleDeclaration GetOverrideStyle(XmlElement elt, string pseudoElt);
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.