Last change
on this file since 18242 was
4068,
checked in by swagner, 14 years ago
|
Sorted usings and removed unused usings in entire solution (#1094)
|
File size:
1.1 KB
|
Line | |
---|
1 |
|
---|
2 | namespace Netron.Diagramming.Core.Layout {
|
---|
3 | public static class LayoutSettings {
|
---|
4 | public static class TreeLayout {
|
---|
5 | /// <summary>
|
---|
6 | /// Gets or sets the TreeOrientation of the standard/classic tree layout
|
---|
7 | /// </summary>
|
---|
8 | public static TreeOrientation TreeOrientation {
|
---|
9 | get { return StandardTreeLayout.Orientation; }
|
---|
10 | set { StandardTreeLayout.Orientation = value; }
|
---|
11 | }
|
---|
12 |
|
---|
13 | /// <summary>
|
---|
14 | /// Gets or sets the spacing between siblings.
|
---|
15 | /// </summary>
|
---|
16 | public static float BreadthSpacing {
|
---|
17 | get { return StandardTreeLayout.BreadthSpacing; }
|
---|
18 | set { StandardTreeLayout.BreadthSpacing = value; }
|
---|
19 | }
|
---|
20 | /// <summary>
|
---|
21 | /// Gets or sets the spacing between parent-child.
|
---|
22 | /// </summary>
|
---|
23 | public static float DepthSpacing {
|
---|
24 | get { return StandardTreeLayout.DepthSpacing; }
|
---|
25 | set { StandardTreeLayout.DepthSpacing = value; }
|
---|
26 | }
|
---|
27 |
|
---|
28 | public static float SubTreeSpacing {
|
---|
29 | get { return StandardTreeLayout.SubTreeSpacing; }
|
---|
30 | set { StandardTreeLayout.SubTreeSpacing = value; }
|
---|
31 | }
|
---|
32 | }
|
---|
33 | }
|
---|
34 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.