Last change
on this file since 13231 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
751 bytes
|
Line | |
---|
1 | // <developer>niklas@protocol7.com</developer>
|
---|
2 | // <completed>100</completed>
|
---|
3 |
|
---|
4 | using System;
|
---|
5 | using System.Xml;
|
---|
6 |
|
---|
7 | namespace SharpVectors.Dom.Css
|
---|
8 | {
|
---|
9 | /// <summary>
|
---|
10 | /// This interface represents a CSS view. The getComputedStyle
|
---|
11 | /// method provides a read only access to the computed values of
|
---|
12 | /// an element.
|
---|
13 | /// </summary>
|
---|
14 | public interface ICssView
|
---|
15 | {
|
---|
16 | /// <summary>
|
---|
17 | /// This method is used to get the computed style as it is defined in [CSS2].
|
---|
18 | /// </summary>
|
---|
19 | /// <param name="elt">The element whose style is to be computed. This parameter cannot be null.</param>
|
---|
20 | /// <param name="pseudoElt">The pseudo-element or null if none</param>
|
---|
21 | ICssStyleDeclaration GetComputedStyle(XmlElement elt, string pseudoElt);
|
---|
22 | }
|
---|
23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.