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:
999 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace SharpVectors.Dom.Css
|
---|
4 | {
|
---|
5 | /// <summary>
|
---|
6 | /// The CSSPageRule interface represents a @page rule within
|
---|
7 | /// a CSS style sheet. The @page rule is used to specify the
|
---|
8 | /// dimensions, orientation, margins, etc. of a page box for
|
---|
9 | /// paged media.
|
---|
10 | /// </summary>
|
---|
11 | /// <developer>niklas@protocol7.com</developer>
|
---|
12 | /// <completed>80</completed>
|
---|
13 | public interface ICssPageRule : ICssRule
|
---|
14 | {
|
---|
15 | /// <summary>
|
---|
16 | /// The declaration-block of this rule.
|
---|
17 | /// </summary>
|
---|
18 | SharpVectors.Dom.Css.ICssStyleDeclaration Style
|
---|
19 | {
|
---|
20 | get;
|
---|
21 | }
|
---|
22 |
|
---|
23 | /// <summary>
|
---|
24 | /// The parsable textual representation of the page selector for the rule.
|
---|
25 | /// </summary>
|
---|
26 | /// <exception cref="DomException">SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable.</exception>
|
---|
27 | /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if this rule is readonly.</exception>
|
---|
28 | string SelectorText
|
---|
29 | {
|
---|
30 | get;
|
---|
31 | set;
|
---|
32 | }
|
---|
33 | }
|
---|
34 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.