Last change
on this file since 13825 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
1.1 KB
|
Line | |
---|
1 | // <developer>niklas@protocol7.com</developer>
|
---|
2 | // <completed>100</completed>
|
---|
3 |
|
---|
4 | using System;
|
---|
5 |
|
---|
6 | namespace SharpVectors.Dom.Svg
|
---|
7 | {
|
---|
8 | /// <summary>
|
---|
9 | /// The SvgRectElement interface corresponds to the 'image' element.
|
---|
10 | /// </summary>
|
---|
11 | public interface ISvgImageElement : ISvgElement, ISvgTests, ISvgStylable,
|
---|
12 | ISvgTransformable, ISvgLangSpace, ISvgExternalResourcesRequired
|
---|
13 | {
|
---|
14 | /// <summary>
|
---|
15 | /// Corresponds to attribute x on the given 'rect' element.
|
---|
16 | /// </summary>
|
---|
17 | ISvgAnimatedLength X { get; }
|
---|
18 |
|
---|
19 | /// <summary>
|
---|
20 | /// Corresponds to attribute y on the given 'rect' element.
|
---|
21 | /// </summary>
|
---|
22 | ISvgAnimatedLength Y { get; }
|
---|
23 |
|
---|
24 | /// <summary>
|
---|
25 | /// Corresponds to attribute width on the given 'rect' element.
|
---|
26 | /// </summary>
|
---|
27 | ISvgAnimatedLength Width { get; }
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Corresponds to attribute height on the given 'rect' element.
|
---|
31 | /// </summary>
|
---|
32 | ISvgAnimatedLength Height { get; }
|
---|
33 |
|
---|
34 | ISvgAnimatedPreserveAspectRatio PreserveAspectRatio { get; }
|
---|
35 |
|
---|
36 | ISvgColorProfileElement ColorProfile
|
---|
37 | {
|
---|
38 | get;
|
---|
39 | }
|
---|
40 | }
|
---|
41 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.