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:
802 bytes
|
Line | |
---|
1 | // <developer>niklas@protocol7.com</developer>
|
---|
2 | // <completed>0</completed>
|
---|
3 |
|
---|
4 | using System;
|
---|
5 |
|
---|
6 | namespace SharpVectors.Dom.Css
|
---|
7 | {
|
---|
8 | /// <summary>
|
---|
9 | /// The Counter interface is used to represent any counter or
|
---|
10 | /// counters function value. This interface reflects the values
|
---|
11 | /// in the underlying style property.
|
---|
12 | /// </summary>
|
---|
13 | public interface ICssCounter
|
---|
14 | {
|
---|
15 | /// <summary>
|
---|
16 | /// This attribute is used for the separator of the nested counters.
|
---|
17 | /// </summary>
|
---|
18 | string Separator
|
---|
19 | {
|
---|
20 | get;
|
---|
21 | }
|
---|
22 |
|
---|
23 | /// <summary>
|
---|
24 | /// This attribute is used for the style of the list.
|
---|
25 | /// </summary>
|
---|
26 | string ListStyle
|
---|
27 | {
|
---|
28 | get;
|
---|
29 | }
|
---|
30 |
|
---|
31 | /// <summary>
|
---|
32 | /// This attribute is used for the identifier of the counter.
|
---|
33 | /// </summary>
|
---|
34 | string Identifier
|
---|
35 | {
|
---|
36 | get;
|
---|
37 | }
|
---|
38 | }
|
---|
39 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.