Last change
on this file since 13401 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
926 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace SharpVectors.Dom.Svg
|
---|
4 | {
|
---|
5 | /// <summary>
|
---|
6 | /// Arguments when URI is trying to be resolved while loading schema
|
---|
7 | /// </summary>
|
---|
8 | public sealed class SvgResolveUriEventArgs : EventArgs
|
---|
9 | {
|
---|
10 | private string _uri;
|
---|
11 |
|
---|
12 | public SvgResolveUriEventArgs()
|
---|
13 | {
|
---|
14 | }
|
---|
15 |
|
---|
16 | public SvgResolveUriEventArgs(string uri)
|
---|
17 | {
|
---|
18 | }
|
---|
19 |
|
---|
20 | /// <summary>
|
---|
21 | /// Gets or sets the URI (for example: 'http://www.w3.org/2000/svg').
|
---|
22 | /// This value may have already been initialized, it's up to the application to check if it wants to override the resolution
|
---|
23 | /// </summary>
|
---|
24 | /// <value>The URI.</value>
|
---|
25 | public string Uri
|
---|
26 | {
|
---|
27 | get
|
---|
28 | {
|
---|
29 | return _uri;
|
---|
30 | }
|
---|
31 | set
|
---|
32 | {
|
---|
33 | _uri = value;
|
---|
34 | }
|
---|
35 | }
|
---|
36 | }
|
---|
37 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.