Last change
on this file since 13777 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
967 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace SharpVectors.Dom.Css
|
---|
4 | {
|
---|
5 | /// <developer>niklas@protocol7.com</developer>
|
---|
6 | /// <completed>100</completed>
|
---|
7 | public interface ICssValue
|
---|
8 | {
|
---|
9 | /// <summary>
|
---|
10 | /// A string representation of the current value.
|
---|
11 | /// </summary>
|
---|
12 | /// <exception cref="DomException">SYNTAX_ERR: Raised if the specified CSS string value has a syntax error (according to the attached property) or is unparsable</exception>
|
---|
13 | /// <exception cref="DomException">INVALID_MODIFICATION_ERR: Raised if the specified CSS string value represents a different type of values than the values allowed by the CSS property.</exception>
|
---|
14 | /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if this value is readonly.</exception>
|
---|
15 | string CssText
|
---|
16 | {
|
---|
17 | get;
|
---|
18 | set;
|
---|
19 | }
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// A code defining the type of the value as defined above
|
---|
23 | /// </summary>
|
---|
24 | SharpVectors.Dom.Css.CssValueType CssValueType
|
---|
25 | {
|
---|
26 | get;
|
---|
27 | }
|
---|
28 | }
|
---|
29 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.