Rev | Line | |
---|
[12503] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace Microsoft.Research.DynamicDataDisplay
|
---|
| 7 | {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Represents a way how InjectedPlotter's Visible property is coerced when parent plotter's visible changes.
|
---|
| 10 | /// </summary>
|
---|
| 11 | public enum ViewportConjunctionMode
|
---|
| 12 | {
|
---|
| 13 | /// <summary>
|
---|
| 14 | /// InjectedPlotter is absolutely independent on parent Plotter.
|
---|
| 15 | /// </summary>
|
---|
| 16 | None,
|
---|
| 17 | /// <summary>
|
---|
| 18 | /// InjectedPlotter will take X values of Parent Plotter's Visible rect.
|
---|
| 19 | /// </summary>
|
---|
| 20 | X,
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// InjectedPlotter will take Y values of Parent Plotter's Visible rect.
|
---|
| 23 | /// </summary>
|
---|
| 24 | Y,
|
---|
| 25 | /// <summary>
|
---|
| 26 | /// InjectedPlotter's Visible follows Parent Plotter's Viisble.
|
---|
| 27 | /// </summary>
|
---|
| 28 | XY
|
---|
| 29 | }
|
---|
| 30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.