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:
542 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace SharpVectors.Dom.Css
|
---|
4 | {
|
---|
5 | /// <summary>
|
---|
6 | /// The CSSFontFaceRule interface represents a @font-face rule
|
---|
7 | /// in a CSS style sheet. The @font-face rule is used to hold a
|
---|
8 | /// set of font descriptions.
|
---|
9 | /// </summary>
|
---|
10 | /// <developer>niklas@protocol7.com</developer>
|
---|
11 | /// <completed>20</completed>
|
---|
12 | public interface ICssFontFaceRule : ICssRule
|
---|
13 | {
|
---|
14 | /// <summary>
|
---|
15 | /// The declaration-block of this rule.
|
---|
16 | /// </summary>
|
---|
17 | SharpVectors.Dom.Css.ICssStyleDeclaration Style
|
---|
18 | {
|
---|
19 | get;
|
---|
20 | }
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.